From charlesreid1

No edit summary
No edit summary
Line 3: Line 3:
=Purpose=
=Purpose=


The purpose of running rsync in a docker container is for consistency - we are already running an stunnel docker container, listening for the rsync traffic, so why not run the rsync server in a container as well?
The purpose of running rsync in a docker container is for consistency - we are already running an stunnel docker container, listening for the rsync traffic, so I wanted to run the rsync server in a container as well.


Basic workflow is as follows:
* Makefile is where the user starts/executes commands
* The Makefile contains a call to the docker build and docker run scripts, and tells the user to open the firewall.
* The build script just calls docker build
* The
Link to the Makefile: https://charlesreid1.com:3000/docker/d-rsync
Link to build script: https://charlesreid1.com:3000/docker/d-rsync/src/master/build_rsync.sh
Link to run script: https://charlesreid1.com:3000/docker/d-rsync/src/master/run_rsync.sh





Revision as of 06:13, 9 April 2017

Docker container running rsync: https://charlesreid1.com:3000/docker/d-rsync

Purpose

The purpose of running rsync in a docker container is for consistency - we are already running an stunnel docker container, listening for the rsync traffic, so I wanted to run the rsync server in a container as well.

Basic workflow is as follows:

  • Makefile is where the user starts/executes commands
  • The Makefile contains a call to the docker build and docker run scripts, and tells the user to open the firewall.
  • The build script just calls docker build
  • The

Link to the Makefile: https://charlesreid1.com:3000/docker/d-rsync

Link to build script: https://charlesreid1.com:3000/docker/d-rsync/src/master/build_rsync.sh

Link to run script: https://charlesreid1.com:3000/docker/d-rsync/src/master/run_rsync.sh


Flags