Login
Remember
Register
Ask a Question
What command is used to go inside a running container?
0
votes
asked
Oct 22, 2024
in
Docker
by
rahuljain1
What command is used to go inside a running container?
docker sh <container_id>
docker exec -it <container_id> sh
docker access <container_id>
docker ps -a
running
container
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 22, 2024
by
rahuljain1
docker exec -it <container_id> sh
...