Computer Science, asked by srinivasrti4470, 7 months ago

Which docker command lets us attach to a running container

Answers

Answered by khushisingh4899
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