blockade icon indicating copy to clipboard operation
blockade copied to clipboard

multiple ports and networks in blockade.yml

Open magg opened this issue 8 years ago • 1 comments

is there a way to expose multiple ports and networks in blockade?

bitcoin2: image: bitcoinnetwork_bitcoin2 ports: - {19200: 19200} - {19201: 19201} networks: - front-tier - back-tier container_name: bitcoin2

something like this does not work?

magg avatar Jan 09 '17 16:01 magg

you can specify multiple ports for a container, like:

ports: {19200: 19200, 19201: 19201}

However there is no support for multiple networks. What is your use case? I don't have a need for this at the moment, but I will consider it for a future enhancement. Thanks!

labisso avatar Jan 10 '17 19:01 labisso