Working on getting two different services running inside a single docker-compose.yml
to communicate w. each other within docker-compose
.
The two services are regular NodeJS servers (app1
& app2
). app1
receives POST
requests from an external source, and should then send a request to the other NodeJS server, app2
w. information based on the initial POST
request.
The challenge that I'm facing is how to make the two NodeJS containers communicate w. each other w/o hardcoding a specific container name. The only way I can get the two containers to communicate currently, is to hardcode a url like: http://myproject_app1_1
, which will then direct the POST
request from app1
to app2
correctly, but due to the way Docker increments container names, it doesn't scale very well nor support potential container crashing etc.
Instead I'd prefer to send the POST
request to something along the lines of http://app2
or a similar way to handle and alias a number of containers, and no matter how many instances of the app2
container exists Docker will pass the request one of the running app2
containers.
Here's a sample of my docker-compose.yml
file:
version: '2'
services:
app1:
image: 'mhart/alpine-node:6.3.0'
container_name: app1
command: npm start
app2:
image: 'mhart/alpine-node:6.3.0'
container_name: app2
command: npm start
# databases [...]
Thanks in advance.