adding an rsync image

This commit is contained in:
Vincent Batts 2019-03-19 19:24:55 -04:00
parent fb9e59e925
commit b3af7d26f6
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
4 changed files with 71 additions and 0 deletions

5
rsyncd/Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM alpine
RUN apk add rsync && mkdir -p /data && touch /etc/rsyncd.conf
VOLUME ["/data"]
EXPOSE 873
CMD ["/usr/bin/rsync","--daemon","--no-detach","--config", "/etc/rsyncd.conf"]