backup-docker/Dockerfile
Djeeberjr 5f8248d236
All checks were successful
continuous-integration/drone/push Build is passing
added entrypoint
2022-03-27 01:31:46 +01:00

18 lines
363 B
Docker

FROM restic/restic
RUN apk add --no-cache mysql-client rclone bash fuse postgresql-client
RUN mkdir /app && mkdir /config
COPY entrypoint.sh /app/entrypoint.sh
COPY setup.sh /app/setup.sh
COPY backup.sh /app/backup.sh
COPY interactive.sh /app/interactive.sh
COPY restore.sh /app/restore.sh
WORKDIR /config
VOLUME /config
ENTRYPOINT [ "/app/entrypoint.sh" ]