How do I run the shell inside a Docker container?

docker exec -it <container name> sh

This starts a new shell session in the container

docs.docker.com/engine/reference/commandline/exec/#run-docker-exec-on-a-running-container

2024-01-08--18-45-02