Last active
September 29, 2024 10:30
-
-
Save omernaci/6042d1dbe67cd32bf69f6d1e43c66ec5 to your computer and use it in GitHub Desktop.
Docker General Commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Command | Description | |
---|---|---|
docker version | Displays Docker version information. | |
docker info | Shows detailed information about the Docker installation and system. | |
docker login | Logs into a Docker registry. | |
docker logout | Logs out from a Docker registry. | |
docker search <image-name> | Searches for Docker images in a registry. | |
docker stats | Shows real-time resource usage statistics of running containers. | |
docker events | Streams real-time events from the Docker server. | |
docker kill <container-id> | Forcibly stops a running container. | |
docker network ls | Lists all Docker networks. | |
docker volume ls | Lists all Docker volumes. | |
docker help | Shows help for Docker commands. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment