mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 06:56:28 +00:00
8de29d1fab
Cleaning up the root directory
52 lines
1.3 KiB
Docker
52 lines
1.3 KiB
Docker
FROM ubuntu:xenial
|
|
MAINTAINER ViViDboarder <vividboarder@gmail.com>
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
software-properties-common python-software-properties \
|
|
&& add-apt-repository ppa:duplicity-team/ppa \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
cron \
|
|
duplicity \
|
|
lftp \
|
|
ncftp \
|
|
openssh-client \
|
|
python-cloudfiles \
|
|
python-gdata \
|
|
python-oauthlib \
|
|
python-paramiko \
|
|
python-pexpect \
|
|
python-pip \
|
|
python-setuptools \
|
|
python-swiftclient \
|
|
python-urllib3 \
|
|
rsync \
|
|
tahoe-lafs \
|
|
&& pip install -U boto b2 \
|
|
&& apt-get autoremove -y python-pip \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/apt/lists/*
|
|
|
|
VOLUME /root/.cache/duplicity
|
|
VOLUME /backups
|
|
VOLUME /var/lock/duplicity
|
|
|
|
ENV BACKUP_DEST="file:///backups"
|
|
ENV BACKUP_NAME="backup"
|
|
ENV PATH_TO_BACKUP="/data"
|
|
ENV PASSPHRASE="Correct.Horse.Battery.Staple"
|
|
ENV FLOCK_WAIT=60
|
|
|
|
# Cron schedules
|
|
ENV CRON_SCHEDULE=""
|
|
ENV FULL_CRON_SCHEDULE=""
|
|
ENV VERIFY_CRON_SCHEDULE=""
|
|
|
|
ADD scripts/backup.sh /
|
|
ADD scripts/restore.sh /
|
|
ADD scripts/start.sh /
|
|
ADD scripts/verify.sh /
|
|
|
|
CMD [ "/start.sh" ]
|