This commit is contained in:
2021-09-07 14:50:23 -04:00
commit 37658cfaca
54 changed files with 2918 additions and 0 deletions

12
rsync/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine:latest
RUN apk add --no-cache --virtual .run-deps rsync openssh tzdata curl ca-certificates flock bash && rm -rf /var/cache/apk/*
COPY docker-entrypoint.sh /
COPY litestream /usr/local/bin/litestream
RUN chmod +x /docker-entrypoint.sh
RUN chmod +x /usr/local/bin/litestream
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["bash"]