Connect two instances of docker-compose Connect two instances of docker-compose docker docker

Connect two instances of docker-compose


Update Jun 2016

The answer below is outdated starting with docker 1.10. See this other similar answer for the new solution.https://stackoverflow.com/a/34476794/1556338

Old answer

  1. Create a network:

     $ docker network create --driver bridge my-net
  2. Reference that network as an environment variable (${NETWORK})in the docker-compose.yml files. Eg:

    pg:  image: postgres:9.4.4  container_name: pg  net: ${NETWORK}  ports:    - "5432"myapp:  image: quay.io/myco/myapp  container_name: myapp  environment:    DATABASE_URL: "http://pg:5432"  net: ${NETWORK}  ports:    - "3000:3000"

Note that pg in http://pg:5432 will resolve to the ip address of the pg service (container). No need to hardcode ip addresses; An entry for pg is automatically added to the /etc/host of the myapp container.

  1. Call docker-compose, passing it the network you created:

    $ NETWORK=my-net docker-compose up -d -f docker-compose.yml -f other-compose.yml

I've created a bridge network above which only works within one node (host). Good for dev. If you need to get two nodes to talk to each other, you need to create an overlay network. Same principle though. You pass the network name to the docker-compose up command.


You could also create a network with docker outside your docker-compose :

docker network create my-shared-network 

And in your docker-compose.yml :

version: '2'services:  pg:    image: postgres:9.4.4    container_name: pg    expose:      - "5432"networks:  default:    external:      name: my-shared-network

And in your second docker-compose.yml :

version: '2'  myapp:    image: quay.io/myco/myapp    container_name: myapp    environment:      DATABASE_URL: "http://pg:5432"    net: ${NETWORK}    expose:      - "3000"networks:  default:    external:      name: my-shared-network

And both instances will be able to see each other, without open ports on host, you just need to expose ports, and there will see each other through the network : "my-shared-network".


Take a look at multi-host docker networking

Networking is a feature of Docker Engine that allows you to create virtual networks and attach containers to them so you can create the network topology that is right for your application. The networked containers can even span multiple hosts, so you don’t have to worry about what host your container lands on. They seamlessly communicate with each other wherever they are – thus enabling true distributed applications.