2019-09-20 13:38:58 +00:00
|
|
|
|
% docker, container
|
|
|
|
|
|
|
|
|
|
# Remove an image
|
|
|
|
|
docker image rm <image_id>
|
|
|
|
|
|
|
|
|
|
# Delete an image from the local image store
|
|
|
|
|
docker rmi <image_id>
|
|
|
|
|
|
|
|
|
|
# List all images that are locally stored with the Docker engine
|
|
|
|
|
docker images
|
|
|
|
|
|
|
|
|
|
# Build an image from the Dockerfile in the current directory and tag the image
|
|
|
|
|
docker build -t <image>:<version> .
|
|
|
|
|
|
|
|
|
|
# Pull an image from a registry
|
|
|
|
|
docker pull <image>:<version>
|
|
|
|
|
|
|
|
|
|
# Stop a running container through SIGTERM
|
|
|
|
|
docker stop <container_id>
|
|
|
|
|
|
|
|
|
|
# Stop a running container through SIGKILL
|
|
|
|
|
docker kill <container_id>
|
|
|
|
|
|
|
|
|
|
# List the networks
|
|
|
|
|
docker network ls
|
|
|
|
|
|
|
|
|
|
# List the running containers
|
|
|
|
|
docker ps
|
|
|
|
|
|
|
|
|
|
# Delete all running and stopped containers
|
|
|
|
|
docker rm -f $(docker ps -aq)
|
|
|
|
|
|
|
|
|
|
# Create a new bash process inside the container and connect it to the terminal
|
|
|
|
|
docker exec -it <container_id> bash
|
|
|
|
|
|
|
|
|
|
# Print the last lines of a container’s logs
|
|
|
|
|
docker logs --tail 100 <container_id> | less
|
|
|
|
|
|
2019-09-25 00:40:08 +00:00
|
|
|
|
# Print the last lines of a container's logs and following its logs
|
|
|
|
|
docker logs --tail 100 <container_id> -f
|
|
|
|
|
|
|
|
|
|
# Create new network
|
|
|
|
|
docker network create <network_name>
|
|
|
|
|
|
2019-09-20 13:38:58 +00:00
|
|
|
|
$ image_id: docker images --- --headers 1 --column 3
|
|
|
|
|
$ container_id: docker ps --- --headers 1 --column 1
|