Skip to content

Running Multiple Sessions

Alexis Ahmed edited this page Mar 27, 2020 · 5 revisions

You can run multiple sessions/tools on the same container by utilizing the exec command. You can use the exec command to deploy more than one session for each container. This can be done by running the following command for every new session:

docker exec -it <ID> /bin/bash

Running multiple sessions with Tmux

Video Tutorial

tmux is a terminal multiplexer for Unix-like operating systems. It allows multiple terminal sessions to be accessed simultaneously in a single window. It is useful for running more than one command-line program at the same time.

Clone this wiki locally