I have a cli application that needs several containers to work. I use docker compose for this.
I want to make it so that no matter the platform, just running something like docker compose up
(inside cmd.exe for example) would result in the cli app (ran in a "main" container) being available to the user, kind of like running docker run -it
but with a compose.yaml. I want to make it dead simple and dont want the user to have to open a shell manually with docker exec
.