I am looking to run containers {a,b,c} at same time but in sequence:
run container a
run container b (a still running)
run container c (a,b still running)
Is this possible with the GO SDK?
Also for the case, container A is a Database server and I need to connect from container B and define the address of the container DB like (DB_SERVER=containerA) how can I achieve it with the Go SDK?.