Files
rdiff-backup-dockerized/Dockerfile
T

17 lines
375 B
Docker
Raw Normal View History

2017-12-26 12:46:05 +01:00
FROM python:2
MAINTAINER Vitali Graf <info@vitaligraf.de>
2017-12-26 12:46:05 +01:00
RUN apt-get update && apt-get install rdiff-backup python-pyxattr python-pylibacl --no-install-recommends -y && apt-get clean && rm -rf /var/lib/apt/lists/*
2017-12-26 12:46:05 +01:00
COPY *.sh /
2017-12-28 14:32:10 +01:00
VOLUME /backups /config /root/.ssh
WORKDIR /
ENV SSH_KEY_MARKER "hier X belibigen wert setzen"
ENTRYPOINT ["/start.sh"]
CMD ["--gen-config"]