FROM debian:stretch MAINTAINER Yaltik - Fabien Bourgeois ENV SOURCE /var/lib/docker/volumes ENV DEST /var/backups/ RUN apt-get update && apt-get install --no-install-recommends -y \ cron gettext-base rsync python-minimal libpython-stdlib # Avoid overlayfs bug with tail VOLUME /var/log WORKDIR /opt/backup COPY crontab ./crontab COPY rsync.template . COPY plan.tpl.py . COPY launch.sh . CMD bash launch.sh