This repository has been archived on 2026-07-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2017-12-26 12:46:05 +01:00
|
|
|
FROM python:2
|
|
|
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install rdiff-backup --no-install-recommends -y && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
COPY ./backup.sh /root/backup.sh
|
2017-12-28 14:32:10 +01:00
|
|
|
|
|
|
|
|
VOLUME ["/root/job.conf", "/root/.ssh", "/var/backups"]
|