rSync Server

As promised, the followup on the Synology versus our server solution. So we knew that the Synology liked to use rsync, so logically we searched for a docker to do just that, and found this one. It does the job, and the server is recognized by the Synology, and is happily making backups ever since.
version: "3.7" services: rsync_server: networks: - backup_net image: apnar/rsync-server container_name: ${CONTAINER_NAME} volumes: - rsync_volume:/data ports: - 873:873 environment: - USERNAME=${USERNAME} - PASSWORD=${PASSWORD} - ALLOW=???.???.???.??? volumes: rsync_volume: external: name: ${CONTAINER_VOLUME} networks: backup_net: external: name: ${CONTAINER_NETWORK}
Hits: 1