in Docker by
What is the purpose of Docker stack rm?

A) To remove a Docker stack running in a swarm

B) To manage Docker images

C) To manage Docker containers

D) To manage Docker networks

1 Answer

0 votes
by

Answer: A

Explanation: Docker stack rm is a command for removing a Docker stack running in a swarm. It allows developers to stop all the services in the stack and remove them from the swarm.

...