Files
docker-backup-to-git/Dockerfile
2024-10-23 02:02:53 +00:00

11 lines
229 B
Docker

FROM istepanov/cron
MAINTAINER Ilya Stepanov <dev@ilyastepanov.com>
RUN apk add --no-cache git ca-certificates
RUN mkdir -p /target
ENV GIT_BRANCH 'master'
ENV GIT_COMMIT_MESSAGE 'Automatic backup'
ENV TARGET_FOLDER '/target'