How to open multiple terminals in docker? -
i need launch 2 distinct processes on docker container requires 2 terminals.what best way achieve this?
you can run docker exec -it <container> bash
multiple terminals launch several sessions connected same container.
Comments
Post a Comment