mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-09-21 05:21:43 +00:00
9 lines
254 B
Docker
9 lines
254 B
Docker
FROM postgres:16-alpine
|
|
|
|
RUN apk add --no-cache bash restic coreutils
|
|
|
|
COPY scripts/backup/container-entrypoint.sh /usr/local/bin/dragons-stash-backup
|
|
RUN chmod 0755 /usr/local/bin/dragons-stash-backup
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dragons-stash-backup"]
|