/multi-docker

Tutorial : Continuous Integration Workflow for Multiple Images

Primary LanguageDockerfile

Docker multi containers deploy

Build Status

Tutorial revisited from StephenGrider multi-docker.

The app to deploy must be abble to calculate and store items of Fibbonacci sequence.

About this

This is an POC of multi container application to deploy on AWS, GCP ...

Folders and file

├── client
│   └── Dockerfile (Image: mikamboo/tuto-multi-client)
├── nginx
│   └── Dockerfile (Image: mikamboo/tuto-multi-nginx)
├── server
│   └── Dockerfile (Image: mikamboo/tuto-multi-server)
├── worker
│   └── Dockerfile (Image: mikamboo/tuto-multi-worker)
├── Dockerrun.aws.json
├── README.md
  • Each service has its own Docker file
  • The .travis.yml CI config is configurer to build and push images to docker hub.