A template pattern to build, deploy and manage applications in Docker environments in a light and transparent way. All environment which have a programmatical interface can be used, e.g. Rancher or AWS.
GNU Make, Docker, Docker-compose
It uses Make, Docker and Docker-compose to abstract the specific commands for managing the application. Except for the above mentioned programs no other programs must be installed since they are provided via Docker images.
Makefile
docker-compose.yaml
services/
1/
Dockerfile
code/
data/
2/
[...]
environments/
1/
devel/
prod/
local/
2/
[...]
ops/
docker-compose.ops.yaml
1/
devel/
prod/
2/
[...]
Makefile
: Controls all non-local operations, e.g. builds, deployments, operations-tasks etc.docker-compose.yaml
: Only local builds and services are controlled by this file.ops/docker-compose.ops.yaml
: Any non-local environments are managed via this file. All necessary applications are wrapped in a run-once Docker-container. Thus no dependencies must be installed. Under https://github.com/sevenval/dockerfiles there are some images which can be utilized, e.g. sloppy-/rancher-deployment.services/
: This folder contains the services. Every service has it's own folder. A folder's name should correspond to the service's name, e.g. "mysql" or "db" for a MySQL-database. The service folders contain the Dockerfile to build the image. It may also contain application code or data.environments/
: Contains environment-specific data necessary for running, starting or deploying the application. For the names of the folders the same names as inservices/
should be used.ops/
: Configuration files and templates which control the management containers called byops/docker-compose.ops.yaml
. Fodler names should reflect the functionality, e.g. sloppy-deployment.
Run the script setup
in the directory which should be prepared and the
necessary files are copied from the directory skel/
.
Then you must change the files according to your needs. In some files "HINT"s
are placed to add alternate configuration for different setups. E.g. Gitlab
Runner in Docker or as process. Do a fgrep -R HINT
to find them all.
New ideas, patches and improvements are always welcome. Please do it the usual way via opening a Pull Request.
The idea and first implementations came from Krispin Schulz krispin.schulz@sevenval.com (Github @kr1sp1n). Markus "Shorty" Uckelmann markus.uckelmann@sevenval.com (Github @bemeyert) put it all together in this repository.