The follwing image illustrates how the containers a communicating with eachother. Each of images is available on Dockerhub. Thus, there is no need to clone any other repositories.
Pull most recent images:
docker-compose pull
To run all containers, execute:
docker-compose up
# use -d option for detached mode
Pull most recent images:
docker-compose -f docker-compose.dev.yml pull
To run all containers, execute:
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
# use -d option for detached mode