I have the following problem regarding console output from Docker Containers
I have built a C# console app, it lives inside a docker image that I have always running (Main Docker Container). I have mounted the docker socket to allow the container to talk to the host docker engine.
When requested the app will spawn containers of itself (Child Docker Container) that do "work".
However the Main Docker Container is logging everything from the console output for all Child Docker Containers.
Is there any way that the Main Docker Container can start Child Docker Containers without console output from Child Docker Containers being printed in the Main Docker Container?
Here is the C# I use to start the Child Docker Container