diff --git a/README.md b/README.md index 76672fb..cc1c595 100644 --- a/README.md +++ b/README.md @@ -62,41 +62,3 @@ sh -c "generate-borgmatic-config -d /etc/borgmatic.d/config.yaml" #### TZ You can set TZ to specify a time zone, `Europe/Berlin`. - -### Dockerfile -``` -FROM alpine:latest -MAINTAINER b3vis -COPY entry.sh /entry.sh -RUN apk upgrade --no-cache \ - && apk add --no-cache \ - tzdata \ - curl \ - sshfs \ - python3 \ - py3-msgpack \ - ca-certificates \ - openssl-dev \ - lz4-dev \ - musl-dev \ - gcc \ - python3-dev \ - acl-dev \ - linux-headers \ - && pip3 install --upgrade pip \ - && pip3 install --upgrade borgbackup \ - && pip3 install --upgrade borgmatic \ - && mkdir /config /cache /source /repository /root/.ssh\ - && rm -rf /var/cache/apk/* \ - && chmod 755 /entry.sh -VOLUME /config -VOLUME /etc/borgmatic.d -VOLUME /cache -VOLUME /source -VOLUME /repository -VOLUME /root/.ssh -# Set Envars -ENV BORG_CACHE_DIR /cache -CMD ["/entry.sh"] - -```