first commit

This commit is contained in:
2024-09-26 11:19:28 +02:00
commit 614b98c29c
3 changed files with 46 additions and 0 deletions

19
Dockerfile_alpine_pgdump Normal file
View File

@ -0,0 +1,19 @@
FROM alpine:latest
LABEL maintainer="development@cooltux.net"
# PostgreSQL-Client installieren
RUN apk update ; \
apk add --no-cache postgresql16-client
# Arbeitsverzeichnis erstellen
WORKDIR /backup
# Entrypoint-Skript hinzufügen
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
# Skript ausführbar machen
RUN chmod +x /usr/local/bin/entrypoint.sh
# Festlegen des EntryPoints für das Docker-Image
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]