Docker/Rsync
From charlesreid1
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
| docker notes on the virtual microservice container platform
Installing the docker platform: Docker/Installing Docker Hello World: Docker/Hello World
Creating Docker Containers: Getting docker containers from docker hub: Docker/Dockerhub Creating docker containers with dockerfiles: Docker/Dockerfiles Managing Dockerfiles using git: Docker/Dockerfiles/Git Setting up Python virtualenv in container: Docker/Virtualenv
Running docker containers: Docker/Basics Dealing with volumes in Docker images: Docker/Volumes Removing Docker images: Docker/Removing Images Rsync Docker Container: Docker/Rsync
Networking with Docker Containers:
|
| docker pods pods are groups of docker containers that travel together
Docker pods are collections of Docker containers that are intended to run in concert for various applications.
Wireless Sensor Data Acquisition Pod The wireless sensor data acquisition pod deploys containers This pod uses the following technologies: Stunnel · Rsync · Apache · MongoDB · Python · Jupyter (numerical Python stack)
Deep Learning Pod This pod utilizes the following technologies: Python · Sklearn · Jupyter (numerical Python stack) · Keras · TensorFlow
|