Accessing the Container Shell

Tested Infrastructure

Platform Number of Instance Reading Time
Play with Docker 1 5 min

Pre-requisite

Create Ubuntu Container

docker run -dit ubuntu 

Accessing the container shell

docker exec -ti <container-id> bash

Accesssing the container shell

docker attach <container-id>

ProceedĀ Ā» Running a Command inside running Container