0 votes
in Docker by
What is the purpose of Docker exec?

A) To run a command inside a running Docker container

B) To manage Docker images

C) To manage Docker containers

D) To manage Docker networks

1 Answer

0 votes
by
Solution:A

Explanation: Docker exec is a command for running a command inside a running Docker container. It allows developers to execute arbitrary commands inside a container, which can be useful for debugging, troubleshooting, and managing a container.
...