2022-09-16 11:00:50 +02:00
|
|
|
FROM alpine:3.16
|
|
|
|
|
2022-09-16 12:12:02 +02:00
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
2022-09-16 11:00:50 +02:00
|
|
|
|
2022-09-16 12:12:02 +02:00
|
|
|
RUN chmod +x /entrypoint.sh && \
|
|
|
|
apk add --no-cache rsync
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["/usr/bin/rsync", "--daemon", "--no-detach", "--config", "/etc/rsyncd.conf", "--verbose"]
|