backup-docker/Dockerfile

15 lines
233 B
Docker
Raw Normal View History

2021-03-29 22:28:09 +02:00
FROM alpine:latest
RUN apk add --no-cache mysql-client restic rclone
RUN mkdir /app && mkdir /config
COPY entrypoint.sh /app/entrypoint.sh
2021-03-29 22:55:10 +02:00
COPY init.sh /app/init.sh
2021-03-29 22:28:09 +02:00
WORKDIR /config
VOLUME /config
ENTRYPOINT /app/entrypoint.sh