Reputation: 157
I have two containers. Each one is spawned in two different docker-compose. How can I link between these containers.
Example: in a single docker-compose
input:
build: InputBuffer
links:
- queue
- output
ports:
- "30005:30005/udp"
But in the links part, I want to link to another container which is spawned by another docker-compose.yml in the same host.
Upvotes: 2
Views: 122