Which docker command lets us attach to a running container
Answers
Answered by
2
Answer:
There is a docker exec command that can be used to connect to a container that is already running. Generically, use docker exec -it <container name> <command> to execute whatever command you specify in the container.
Similar questions