Adam C
Adam C

Reputation: 21

Linking Containers with Pipeline

Using the ICE command line, I am able to create two Docker containers that are linked. The first container is my backend node server which listens on port 3000. The second container is an http server that listens on 80. The http server proxies the api requests to linked server's port 3000. It works as expected. I need to replicate this setup using the deployment pipeline.

How do I link containers using the deployment pipeline? Am I supposed to create the two linked as a container group? It seems like I should be able to setup a container group that would scale the linked containers but I haven't been able to find documentation on how to do this.

Upvotes: 1

Views: 198

Answers (1)

Umberto Manganiello
Umberto Manganiello

Reputation: 3233

Please take a look at the IBM Containers Docs - Creating a container group by using the Delivery Pipeline. There you should find the information you need about the delivery pipeline and the container groups.

Upvotes: 3

Related Questions