Files
restic-container/Dockerfile
2026-02-08 21:39:02 +00:00

8 lines
232 B
Docker

FROM restic/restic:0.18.1
RUN apk add --no-cache openssh-client bash
COPY scripts/restic.bash /usr/local/bin/backup-entrypoint.sh
RUN chmod +x /usr/local/bin/backup-entrypoint.sh
ENTRYPOINT ["/usr/local/bin/backup-entrypoint.sh"]