DEV Community

Cover image for List of Docker Container Commands you should know - Docker tips and tricks
GaneshMani
GaneshMani

Posted on • Originally published at cloudnweb.dev

List of Docker Container Commands you should know - Docker tips and tricks

List of Docker Container Commands you should know - Docker tips and tricks

This article covers list of commands that you should know to manage docker containers in your local machine or server. some of the important commands are docker list containers, start a container and stop container from docker.

What is Docker Container

Docker container is an isolated packages of software that you can use to run your application, code or any infrastructure. basically, it helps to manage your application code without conflicting with your current machine/server setup.

Commands

There are few commands that you need to know to manage docker container. let's start with basic commands.

Start/Stop Container

To start/stop a docker container, you can do that using the command,

docker container start [OPTIONS] <Container id>
Enter fullscreen mode Exit fullscreen mode

Note: you can specify the name or you can just specify the first two digits of the container id.

docker container commands

docker stop container

To stop the container, you need to specify the stop in the docker container command.

docker container stop [OPTIONS] <Container id>
Enter fullscreen mode Exit fullscreen mode

docker container commands

docker stop all container

To stop all the running container, you can use the command,

docker stop $(docker ps -a -q)
Enter fullscreen mode Exit fullscreen mode

Remove all stopped containers

Once you stop all containers, you can remove it using the command,

docker container prune
Enter fullscreen mode Exit fullscreen mode

docker containers list

Docker list containers

To list all the docker container, you can do that using the command,

docker container ls [OPTIONS]
Enter fullscreen mode Exit fullscreen mode

you can add options such as

  1. --all or -a it shows all the containers in the docker
  2. --size or -s , displays the container along with size
  3. --latest or -l shows latest container first
  4. --last or -n it shows the lastly created containers

docker container commands

docker containers

Kill Container

To kill a docker container, you can use the command

docker container kill [OPTIONS] <Container ID>
Enter fullscreen mode Exit fullscreen mode

there is a difference between docker stop and docker kill container commands. docker stop will send a signal SIGTERM and then after some grace period it sends the signal SIGKILL to stop the containers whereas in docker kill command, it sends the SIGKILL command directly.

you need to be careful with docker kill command, my personal suggestion would be to use docker stop command. to explain it a simple way, difference is like shutting down your computer vs forcefully removing the plug from socket to turn off the machine.

Conclusion

So far, we have seen the important command that you need to know for docker containers. try to use the above commands and play with it to get hands-on experience. if you feel like any important commands are missing, let me know in the comments below. Happy Coding 🙂

Checkout more blog like this here https://cloudnweb.dev/

Top comments (0)