I'd like to forward an arbitrary port (cue sdk) to the process in the dagger container (ugh). I've successfully forwarded the docker socket and the ssh auth socket, but I get a little confused about the phrasing of how you would forward a port from the machine inward.
The context: unit tests which run via docker-compose. The docker-compose up part begins to work (since the docker socket is forwarded to the dagger container via client: network, and it sorta works, but health checks fail because the health checks are going to "localhost:port" which fails.
I thought you could eg client: network: "http://localhost:4242": connect: dagger.#Socket which may even work for the source, but I'm confused how you would mount it in the target since the other sockets are mounted as files with "dest".
Any suggestions? Is this possible?