Hi,
I have a service that depends on other services:
my-service (port 11170)
├── cassandra (port 9042)
├── kafka (port 9092)
└── zookeeper (port 2181)
in code I do this:
WithServiceBinding("zookeeper", zookeeperService).
WithServiceBinding("kafka", kafkaService).
WithServiceBinding("cassandra", cassandraService).
I'd like to expose all these ports to the host but when I run this:
dagger call my-service up --ports 11170:11170 --ports 9042:9042
```
it doesn't work, I think it's trying to expose the port 9042 from the my-service container, which doesn't exist ?
is it possible to do what I want ?