This Docker container synchronizes the content of your host server with an FTP server
As a first step we must download the ftp-synchronizer container from Github Packpages.
docker pull ghcr.io/domingoruiz/ftp-synchronizer:latest
Once downloaded we must start the container with the following command modifying it to taste
docker container run \
-it -v <path-in-host-to-syncronize>:/mnt/ \
-e SERVER=<ftp-server> \
-e USER=<ftp-username> \
-e PASSWORD=<ftp-password> \
-e DESTINATION=<ftp-path-destination> \
-e HOURS=<hours-by-each-copy> \
--restart=always \
ftp-synchronizer
Application developed by Domingo Ruiz Arroyo in 2020
This project is published under the MIT license. See the file LICENSE for more details.