mirror of
https://github.com/napnap75/multiarch-docker-images.git
synced 2026-09-25 20:31:52 +02:00
18 lines
410 B
Docker
18 lines
410 B
Docker
FROM debian:stable-slim
|
|
|
|
RUN apt update && apt update && apt install rsync -y \
|
|
&& touch /etc/rsyncd.secrets \
|
|
&& chmod 600 /etc/rsyncd.secrets
|
|
|
|
VOLUME ["/shares"]
|
|
|
|
EXPOSE 873
|
|
|
|
COPY rsyncd.conf /etc/rsyncd.conf
|
|
COPY scripts/ /scripts/
|
|
|
|
HEALTHCHECK CMD ["/scripts/docker-healthcheck.sh"]
|
|
ENTRYPOINT ["/scripts/docker-entrypoint.sh"]
|
|
|
|
CMD [ "rsync", "--no-detach", "--daemon", "--config", "/etc/rsyncd.conf" ]
|