Marek Masko has some commands which will help DBAs get familiar with Docker:
Stop container
To stop container:
- docker stop <container ID>
To stop all running containers:
-
docker stop $(docker ps -a -q)
Most of the commands are straightforward but it’s nice to have a reference guide.