Summary of learning Docker commands in one article

Summary of learning Docker commands in one article

Introduction

Docker commands are divided into usage commands and management commands. This article summarizes and provides sample prompts for Docker usage commands and management commands to facilitate learning for others and review and use by myself.

Docker not only provides commands used in various links, but also provides DockerAPI for us to use HTTP to interact with Docker and develop our own Docker.

Since there are too many commands, a rough list is given below for everyone to have a preliminary understanding of all the commands, and then you can click on the ones you don’t understand.

Management commands:
 container manages containersimage manages imagesnetwork manages networksnode manages Swarm nodesplugin manages pluginssecret manages Docker secrets
 Service management service stack management Docker stacks
 swarm manages Swarm clusters system views system information volume manages volumes such as: docker container ls displays all containers common commands:
 
 // Developers should be proficient in:
 images View the image list rmi Delete an image save Save the specified image as a tar archive load Load an image from an archive or STDIN build Build an image from a DockerFile commit Create an image from a container create Create a container run Create a new container and run a command rename Rename the container start Start a container stop Stop a container restart Restart a container rm Delete a container logs Get a container's logs exec Run a command in a running container cp Copy files between the container and the host file system ps View the container list // Operations and maintenance should be proficient in: 
 login Log in to the Docker image repository logout Exit the Docker image repository search Search for images from the Docker Hub pull Pull images from the image repository push Upload local images to the image repository. You must first log in to the image repository tag Tag local images and assign them to a certain repository export Export the container's file system as a tar archive import Create an image from an archive file info Display system-wide information version Display Docker version information stats Display (real-time) statistics on container resource usage inspect Display low-level information about Docker objects (view object details)
 diff shows changes on the container file system (view container changes)
 events displays real-time events from the server (you can view changes in docker)
 port Displays a list of port mappings or a specific mapping for a container (port view)
 top displays the processes running in a container (view processes)
 history displays the history of the image attach enters a running container pause pauses all processes in one or more containers unpause resumes all processes in the container kill kills the running container wait blocks until the container stops, then prints the exit code update updates the container configuration

Mirror repository

login

dockerlogin: Log in to a Docker image repository. If the image repository address is not specified, the default is the official repository Docker Hub

docker logout : log out of a Docker image repository. If the image repository address is not specified, the default is the official repository Docker Hub

grammar:

docker login/logout (-$) [SERVER]

-u Login username

-p login password

Example:

Log in to Docker Hub

docker login -u username -p password

Log out of Docker Hub

docker logout

pull

dockerpull: pull or update the specified image from the image repository

grammar:

docker pull (-$) NAME[:TAG|@DIGEST]

-a,all pull all tagged images

--disable-content-trust Ignore image verification, enabled by default

Example:

Download the latest Java image from Docker Hub.

docker pull java

Download all images with REPOSITORY java from Docker Hub.

docker pull -a java

push

docker push: upload the local image to the image warehouse, you must first log in to the image warehouse

grammar:

docker push (-$) NAME[:TAG]

--disable-content-trust Ignore image verification, enabled by default

Example:

Upload the local image myapache:v1 to the image repository

docker push myapache:v1

Push the image library to a private source

docker push 192.168.0.100:5000/ubuntu

search

docker search : Search for images from Docker Hub

grammar:

docker search (-$) TERM

-automated only lists images of automated build type;

--no-trunc Display the complete image description;

-s List images with a collection count no less than the specified value.

Example:

Find all images from Docker Hub that have the image name containing java and have more than 10 favorites

docker search -s 10 java
runoob@runoob:~$ docker search -s 10 java
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
java Java is a concurrent, class-based... 1037 [OK] 
anapsix/alpine-java Oracle Java 8 (and 7) with GLIBC ... 115 [OK]
develar/java 46 [OK]
isuper/java-oracle This repository contains all java... 38 [OK]
lwieske/java-8 Oracle Java 8 Container - Full + ... 27 [OK]
nimmis/java-centos This is docker images of CentOS 7... 13 [OK]

Local image management

images

docker images : List local images.

grammar:

docker images (-$) [REPOSITORY[:TAG]]

-a lists all local images (including intermediate image layers. By default, intermediate image layers are filtered out)

--digests Display summary information of the image

-f Display images that meet the conditions

--format specifies the template file for the return value

--no-trunc Display complete image information

-q Display only the image ID.

Example:

Query for useless images

docker images -f dangling=true

List the mirror list of local mirrors whose REPOSITORY is alpine.

docker images alpine
[root@master ~]# docker images alpine
REPOSITORY TAG IMAGE ID CREATED SIZE
alpine 3.9 cdf98d1859c1 3 months ago 5.53MB
alpine latest cdf98d1859c1 3 months ago 5.53MB

rmi

docker rmi : Delete one or more local images.

grammar:

docker rmi (-$)

-f, --force Force deletion of the image
--no-prune Do not remove the process image of this image, it is removed by default

Example:

Delete all images

docker rmi $(docker images -q)

Force deletion of images containing "doss-api" in the image name

docker rmi --force $(docker images | grep doss-api | awk '{print $3}')

Batch delete useless images (all three methods are available. If you want to force deletion, add -f after rmi)

docker rmi $(docker images | grep "^" | awk "{print $3}")
docker images | grep none | awk '{print $3}' | xargs docker rmi
docker rmi $(docker images -f dangling=true)

tag

docker tag: tag the local image and assign it to a repository.

grammar:

docker tag (-$) IMAGE[:TAG] [REGISTRYHOST/][USERNAME/]NAME[:TAG]

Examples:

Mark the image ubuntu:15.10 as runoob/ubuntu:v3 image.

docker tag ubuntu:15.10 runoob/ubuntu:v3
root@runoob:~# docker tag ubuntu:15.10 runoob/ubuntu:v3
root@runoob:~# docker images runoob/ubuntu:v3
REPOSITORY TAG IMAGE ID CREATED SIZE
runoob/ubuntu v3 4e3b13c8a266 3 months ago 136.3 MB

build

The docker build command is used to create an image using a Dockerfile.

grammar:

docker build (-$) PATH | URL | -

--build-arg=[] Set the variables when creating the image

--cpu-shares Set cpu usage weights

--cpu-period Limit CPU CFS period

--cpu-quota Limit CPU CFS quota

--cpuset-cpus specifies the CPU id to use

--cpuset-mems specifies the memory id to be used

--disable-content-trust Ignore verification, enabled by default

-f specifies the Dockerfile path to use

--force-rm Set the image process to delete the intermediate container

--isolation Use container isolation technology

--label=[] Set the metadata used by the image

-m sets the maximum memory value

--memory-swap Set the maximum swap value to memory + swap. "-1" means unlimited swap

--no-cache Do not use cache when creating the image

--pull Try to update the new version of the image

--quiet, -q Quiet mode, only output the image ID after success

--rm Delete the intermediate container after setting the image successfully

--shm-size sets the size of /dev/shm, the default value is 64M

--ulimit Ulimit configuration.

--tag, -t The name and tag of the image, usually in the format of name:tag or name; multiple tags can be set for an image in one build.

--network Default is default. Set the network mode for the RUN instruction during a build

Example:

Use the Dockerfile in the current directory to create an image with the tag runoob/ubuntu:v1.

docker build -t runoob/ubuntu:v1 .

Create an image using the Dockerfile at the URL github.com/creack/docker-firefox.

docker build github.com/creack/docker-firefox

You can also pass the location of the Dockerfile file through -f:

docker build -f /path/to/a/Dockerfile .

Before the Docker daemon executes the instructions in the Dockerfile, it first performs a syntax check on the Dockerfile and returns the following if there is a syntax error:

docker build -t test/myapp .
 Sending build context to Docker daemon 2.048 kB
 Error response from daemon: Unknown instruction: RUNCMD

history

docker history: View the creation history of the specified image.

grammar:

docker history (-$) IMAGE

-H prints image size and date in a readable format, default is true;

--no-trunc Display the complete commit history;

-q List only commit IDs.

save

docker save : Save the specified image as a tar archive file.

grammar:

docker save (-$) IMAGE [IMAGE...]

-o Output to file.

Example:

Exporting an Image

docker save -o /root/mytomcat7.tar.gz docker.io/tomcat:7.0.77-jre7

or

docker save docker.io/tomcat:7.0.77-jre7 >/root/mytomcat7.tar.gz

load

docker load : Imports an image exported using the docker save command.

grammar:

docker load (-$)

-i specifies the exported file.

-q Concise output information.

Examples

Importing an Image

docker load -i ubuntu.tar
docker load < ubuntu.tar
docker load < /root/mytomcat7.tar.gz 

import

docker import : Create an image from an archive.

grammar:

docker import (-$) file|URL|- [REPOSITORY[:TAG]]

-c, --change Apply Dockerfile instructions to the created image

-m, --message Set description information for the imported image
--platform Set the platform if the server is multiplatform capable

Examples

Create an image from the image archive file my_ubuntu_v3.tar and name it runoob/ubuntu:v4

runoob@runoob:~$ docker import my_ubuntu_v3.tar runoob/ubuntu:v4 
sha256:63ce4a6d6bc3fabb95dbd6c561404a309b7bdfc4e21c1d59fe9fe4299cbfea39
runoob@runoob:~$ docker images runoob/ubuntu:v4
REPOSITORY TAG IMAGE ID CREATED SIZE
runoob/ubuntu v4 63ce4a6d6bc3 20 seconds ago 142.1 MB

Container Operations

ps

dockerps : list containers

grammar:

docker ps (-$)

-a, --all Show all containers (default is to show running ones)

-n Display the last n containers created (including all states) (default -1)
Example: docker ps -n2

-l, --latest Display the latest created container (including all states)

-q, --quiet only show numeric ids

-s, --size Display total file size

--no-trunc Do not truncate output

-f, --filter Filter output according to the provided criteria
The filtering conditions are as follows:
Filter | Description
---|---
id | ID of the container
name | Name of the container
label | Any string representing a key or key-value pair. Expressed as <key> or <key>=<value>
exited | An integer representing the container's exit code. Only useful to everyone.
status | created,restarting,running,removing,paused,exited,dead
ancestor|Filters containers of a specified image, such as <image-name>[:<tag>],<image id>, or <image@digest>
before or since | Filter containers created before or after a given container ID or name
volume | Filter to run containers that have the given volume or bind mount mounted.
network | Filter runs containers connected to a given network.
publish or expose | Filter containers that publish or expose a given port, e.g. <port>[/<proto>] or <startport-endport>/[<proto>]
health | Filter containers based on their health check status, such as starting, healthy, unhealthy or none.
isolation | Windows daemons only, such as default, process, or hyperv.
is-task | Filters for the "task" container of a service. Boolean options (true or false)

Example:
docker ps -f name=^'modality'
docker ps --filter name=nginx
docker ps -a --filter exited=0
docker ps --filter status=running
docker ps --filter expose=3306
--format Pretty print the container using Go templates
The filtering conditions are as follows:
Placeholder | Description
---|---
.ID | ID of the container
.Image | Image ID
.Command | Quote command
.CreatedAt | The time when the container was created
.RunningFor | The amount of time the container has been running since it was started
.Ports | Exposed ports
.Status | Container status
.Size | The disk size of the container
.Names | The name of the container
.Labels | All labels assigned to the container
.Label | The value of a specific label for this container, e.g. `{{.Label "com.docker.swarm.cpu"}}`
.Mounts | Volumes mounted by the container
.Networks | The network name used by the container

Example:

docker ps --format "{{.ID}}: {{.Names}}: {{.Command}}"

Common monitoring commands:

Query the last 5 containers

docker ps -a -n=5

Monitor the number of containers

docker ps -a -q | wc -l

The number of running containers

docker ps -q | wc -l

The number of containers that are not running

docker ps -a | grep -v 'Up ' | grep -v'CONTAINER' | wc -l

inspect

docker inspect : Get metadata of a container/image.

grammar:

docker inspect (-$) NAME|ID [NAME|ID...]

-f Format output using the given Go template

-s If the type is container, show the total file size

--type returns JSON of the specified type.

Example:

View the number of container restarts

docker inspect -f "{{ .RestartCount }}" name

View the last startup time of the container

docker inspect -f "{{ .State.StartedAt }}" name

List all port bindings

docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' $INSTANCE_ID

Get the IP of the running container mymysql

runoob@runoob:~$ docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' mymysql
172.17.0.3

Note: For more examples, please click the official website link above

top

docker top: View the process information running in the container, supporting ps command parameters.

grammar:

docker top CONTAINER [ps OPTIONS]

When the container is running, there may not be a /bin/bash terminal to interactively execute the top command, and the container may not have a top command. You can use docker top to view the running processes in the container.

Example:

View the process information of the mymysql container.

runoob@runoob:~/mysql$ docker top mymysql
UID PID PPID C STIME TTY TIME CMD
999 40347 40331 18 00:58 ? 00:00:02 mysqld

View process information of all running containers.

for i in docker ps |grep Up|awk '{print $1}';do echo &&docker top $i; done

attach

docker attach : connect to a running container and attach the local standard input, output, and error streams to the running container (personal understanding, that is, use commands to control the container after the link is realized)

grammar:

docker attach (-$) CONTAINER

--detach-keys Override the key sequence for detaching a container
--no-stdin Do not attach STDIN
--sig-proxy proxy all received process signals (default true)

The container to be attached must be running. You can connect to the same container at the same time to share the screen (similar to attach with the screen command).

The official documentation says that you can detach by pressing CTRL-C after attaching. However, my tests show that if the container is currently running bash, CTRL-C is the input of the current line and does not exit. If the container is currently running a process in the foreground, such as outputting nginx's access.log log, CTRL-C will not only exit the container, but also stop it. This is not what we want. Detach should mean leaving the container terminal, but the container is still running. Fortunately, you can use --sig-proxy=false when attaching to ensure that CTRL-D or CTRL-C does not shut down the container.

Example:

The mynginx container directs the access log to standard output. Connect to the container to view the access information.

runoob@runoob:~$ docker attach --sig-proxy=false mynginx
192.168.239.1 - - [10/Jul/2016:16:54:26 +0000] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.93 Safari/537.36" "-"

Note: (When exiting, the container will also stop running). For more examples and detailed explanations, please click the official website link above or use the --help command to view

events

docker events : Get real-time events from the server

grammar:

docker events (-$)

-f, --filter Filter events based on conditions

--format Format the output using the given Go template

--since Display all events since the specified timestamp

--until The running time is displayed until the specified time

Example:

Show all docker events after July 1, 2016.

docker events --since="1467302400"
runoob@runoob:~/mysql$ docker events --since="1467302400"
2016-07-08T19:44:54.501277677+08:00 network connect 66f958fd13dc4314ad20034e576d5c5eba72e0849dcc38ad9e8436314a4149d4 (container=b8573233d675705df8c89796a2c2687cd8e36e03646457a15fb51022db440e64, name=bridge, type=bridge)
2016-07-08T19:44:54.723876221+08:00 container started b8573233d675705df8c89796a2c2687cd8e36e03646457a15fb51022db440e64 (image=nginx:latest, name=elegant_albattani)

The docker image is mysql:5.6 and related events after July 1, 2016.

docker events -f "image"="mysql:5.6" --since="1467302400"
runoob@runoob:~/mysql$ docker events -f "image"="mysql:5.6" --since="1467302400" 
2016-07-11T00:38:53.975174837+08:00 container started 96f7f14e99ab9d2f60943a50be23035eda1623782cc5f930411bbea407a2bb10 (image=mysql:5.6, name=mymysql)
2016-07-11T00:51:17.022572452+08:00 container kill 96f7f14e99ab9d2f60943a50be23035eda1623782cc5f930411bbea407a2bb10 (image=mysql:5.6, name=mymysql, signal=9)

Note: For more examples and detailed explanations, please click the official website link above or use the --help command to view

logs

docker logs : Get container logs

docker logs (-$) name

--details Display additional details for the log file.
-f, --follow Follow log output
--since Display logs since a timestamp (e.g. 2013-01-02T13:23:37) or relative (e.g. 42 minutes 42 seconds)

-t, --timestamps Display timestamps similar to tail -f

--tail Output the specified number of lines at the end of the log (default is all logs)
--until Display logs before a timestamp (e.g. 2013-01-02T13:23:37) or relative (e.g. 42 minutes 42 seconds)

Examples:

View the latest 10 logs of the mynginx container since July 1, 2016

docker logs --since="2016-07-01" --tail=10 mynginx

View Docker container logs in real time

docker logs -f -t --tail line number container name

View the last 10 lines of logs of the docker container named s12 in real time

docker logs -f -t --tail 10 s12

Note: For more examples and detailed explanations, please click the official website link above or use the --help command to view

wait

docker wait : Block until the container stops, then print its exit code.

grammar:

docker wait (-$) CONTAINER [CONTAINER...]

Examples

docker wait CONTAINER

export

docker export : exports the file system as a tar archive to STDOUT

grammar:

docker export [OPTIONS] CONTAINER

-o, --output Write input to file.

Example:

Example 1: Save the container named red_panda as a tar file

docker export red_panda > latest.tar

or

docker export --output="latest.tar" red_panda

Example 2: Save the container with id a404c6c174a2 as a tar file by date.

runoob@runoob:~$ docker export -o mysql-`date +%Y%m%d`.tar a404c6c174a2
runoob@runoob:~$ ls mysql-`date +%Y%m%d`.tar
mysql-20160711.tar

port

docker port : Lists the port mappings for the specified container, or finds the PRIVATE_PORT NATed to a public-facing port.

grammar:

docker port CONTAINER [PRIVATE_PORT[/PROTO]]

Example:

Check the port mapping of the container ID cbe08f2a4406.

runoob@runoob:~$ docker port cbe08f2a4406
3306/tcp -> 0.0.0.0:13306

stats

docker stats : displays a live stream of container resource usage statistics

grammar:

docker stats (-$) [CONTAINER...]

-a, --all Display all containers (default is to display the container just run)
--format Pretty print image using Go template
--no-stream disable streaming statistics and extract only the first result
--no-trunc Do not truncate output

Example:

Run docker stats against all containers running in the Linux daemon.

$ docker stats
CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
b95a83497c91 awesome_brattain 0.28% 5.629MiB / 1.952GiB 0.28% 916B / 0B 147kB / 0B 9
67b2525d8ad1 foobar 0.00% 1.727MiB / 1.952GiB 0.09% 2.48kB / 0B 4.11MB / 0B 2
e5c383697914 test-1951.1.kay7x1lh1twk9c0oig50sd5tr 0.00% 196KiB / 1.952GiB 0.01% 71.2kB / 0B 770kB / 0B 1
4bda148efbc0 random.1.vnc8on831idyr42slu578u3cr 0.00% 1.672MiB / 1.952GiB 0.08% 

If the format string --format is not specified, the following columns are displayed.

Column Name describe
CONTAINER ID and Name The ID and name of the container
CPU % and MEM % The percentage of the host machine's CPU and memory that the container is using
MEM USAGE / LIMIT The total memory the container is using, and the total amount of memory it is allowed to use
NET I/O The amount of data sent and received by the container through its network interface
BLOCK I/O The amount of data the container reads and writes from block devices on the host
PIDs The number of processes or threads created by the container

Note: For more examples, please click the official website link above

Container lifecycle management

run

docker run : creates a new container and runs a command

Note: Since this command has 99 options, this section only uses some commonly used options. For details, please refer to the official website

grammar:

docker run (-$) IMAGE [COMMAND] [ARG...]

-a, --attach=[] specifies the standard input and output content type, optional STDIN/STDOUT/STDERR, used to log in to the container (must be a container started with docker run -d)
-d runs the container in the background and returns the container ID. The default value is false

-i opens STDIN and runs the container in interactive mode. It is usually used together with -t. The default value is false

-P, --publish-all=false Random port mapping, the internal ports of the container are randomly mapped to the ports of the host

-p, --publish=[] specifies the port exposed by the container, in the format of: host port: container port
-t, --tty reallocates a pseudo input terminal TTY for the container to support terminal login. It is usually used together with -i. The default value is false.
--name="" specifies the container name, the links feature requires a name
-u, --user="" Specify the container user

-w specifies the working directory of the container

-c sets the container CPU weight, used in CPU sharing scenarios

-e, --env=[] specifies environment variables that can be used in the container

-m specifies the container's memory limit

-h specifies the hostname of the container

-v, --volume=[] mounts a storage volume to a directory in the container
--volumes-from=[] Mount the volumes of other containers to a directory in the container

--cap-add=[] add permissions

--cap-drop=[] drop permissions

--cidfile="" After running the container, write the container PID value to the specified file to monitor system usage

--cpuset="" Set which CPUs can be used by the container. This parameter can be used to monopolize the CPU for the container.

--device=[] Add host device to container, equivalent to device passthrough

--dns=[] specifies the container's DNS server

--dns-search=[] specifies the dns search domain name of the container and writes it to the container /etc/resolv.conf file
--entrypoint="" Override the image's entry point

--env-file=[] specifies the environment variable file, the file format is one environment variable per line

--expose=[] Open a port or a group of ports, that is, modify the exposed ports of the image

--link=[] specifies the association between containers, linking them to another container, thereby using the IP, env and other information of other containers

--lxc-conf=[] specifies the container's configuration file. This is only used when --exec-driver=lxc is specified.

--net="bridge" specifies the network connection type for the container:

bridge Use the bridge specified by docker daemon

host //The container uses the host's network

container:NAME_or_ID >//Use other containers' network resources such as IP and PORT to share network resources

none The container uses its own network (similar to --net=bridge)

--privileged=false specifies whether the container is a privileged container. Privileged containers have all permissions.
--restart="no" specifies the restart strategy after the container stops:

no: Do ​​not restart the container when it exits (default policy)

on-failure: Restart the container when it exits with a failure (return value is non-zero).

on-failure:3, restart the container when it exits abnormally, up to 3 times

always: The container is always restarted when it exits

unless-stopped: Always restart the container when it exits, but do not consider containers that were stopped when the Docker daemon started

--rm=false specifies that the container will be automatically deleted after it stops (does not support containers started with docker run -d)
--sig-proxy=true Set the proxy to accept and handle signals. SIGCHLD, SIGSTOP and SIGKILL are not represented by

Extended description: Container exit status code

  • The exit status codes of docker run are as follows:
  • 0, indicating normal exit
    • Non-0, indicating abnormal exit (exit status code uses chroot standard) ◦125, error in Docker daemon process itself
    • 126. After the container is started, the default command to be executed cannot be called
    • 127, After the container is started, the default command to be executed does not exist
    • Other command status codes: After the container is started, the command is executed normally. When the command is exited, the return status code of the command is used as the exit status code of the container.

Examples:

Use the docker image nginx:latest to start a container in background mode and name the container mynginx.

docker run --name mynginx -d nginx:latest

Use the image nginx:latest to start a container in background mode and map port 80 of the container to a random port on the host.

docker run -P -d nginx:latest

Use the image nginx:latest to start a container in background mode, map port 80 of the container to port 80 of the host, and map the directory /data of the host to /data of the container.

docker run -p 80:80 -v /data:/data -d nginx:latest

Bind the container's port 8080 and map it to port 80 on the local host 127.0.0.1.

docker run -p 127.0.0.1:80:8080/tcp ubuntu bash

Use the image nginx:latest to start a container in interactive mode and execute the /bin/bash command in the container.

runoob@runoob:~$ docker run -it nginx:latest /bin/bash
root@b8573233d675:/#

start/stop/restart

docker start : Start one or more stopped containers

docker stop : Stop a running container

docker restart : restart the container

grammar:

docker start (-$) CONTAINER [CONTAINER...]

--attach , -a attach STDOUT / STDERR and forward signals
--checkpoint Restore from this checkpoint

--checkpoint-dir Use custom checkpoint storage directory

--detach-keys Override the key sequence for detaching a container
--interactive , -i attach container's STDIN

docker stop (-$) CONTAINER [CONTAINER...]

--time , -t Number of seconds to wait before killing, default 10 seconds

docker restart (-$) CONTAINER [CONTAINER...]

--time , -t Number of seconds to wait before killing, default 10 seconds

kill

docker kill : Kill a running container.

grammar:

docker kill (-$) CONTAINER [CONTAINER...]

-s, --signal sends a signal to the container, forcing a shutdown -s specifies the SIGINT signal type, the default is "kill"

Examples:

Kill the running container mynginx

runoob@runoob:~$ docker kill -s KILL mynginx
mynginx

Kill all running containers

docker kill $(docker ps -p -a )

Note: The -s in this section involves Linux signals. For more information, click here

rm

docker rm : remove one or more containers

grammar:

docker rm (-$) CONTAINER [CONTAINER...]

-f --force=false Forcefully remove a running container via the SIGKILL signal

-l --link=false Remove network connections between containers, not the containers themselves, leaving the underlying containers intact

-v --volumes=false Remove volumes associated with the container

Examples:

Remove the connection from container nginx01 to container db01, the connection name is db

docker rm -l db

Delete the container nginx01 and the data volume mounted by the container

docker rm -v nginx01

Force delete all containers

docker rm -f 'docker ps -a -q'

Deleting non-running containers

docker rm docker ps -a -f status=exited

Delete the abnormally exited container

docker rm docker ps -a | grep Exited | awk '{print $1}'

Deactivate and delete a container with one command

docker stop $(docker ps -q) & docker rm $(docker ps -aq )

Batch delete the last 5 containers

docker rm $(docker ps -aq -n=5)

Remove the container created by the specified image

docker rm $(docker ps -a | grep "watch-the-fun/jdk:8" | awk '{print $1}')

Command split explanation:

| is a pipe character, which is used to pass the execution result of the previous command as a parameter to the next command.

docker ps -a queries all created containers (including unstarted ones)

grep "watch-the-fun/jdk:8" filters the records with the image name watch-the-fun/jdk:8

awk '{print $1}' finds the first column in the record by line, which is the container ID

$() is used as command substitution

Note: For more examples and detailed explanations, please click the official website link above or use the --help command to view

pause/unpause

docker pause : Pause all processes in the container.

docker unpause : Resume all processes in the container.

grammar:

docker pause CONTAINER [CONTAINER...]
docker unpause CONTAINER [CONTAINER...]

Example:

Stop the database container db01 from providing services

docker pause db01

Restore the database container db01 to provide services

docker unpause db01

create

docker create : creates a new container but does not start it

Same usage as docker run

grammar:

docker create (-$) IMAGE [COMMAND] [ARG...]

Same syntax as docker run

Examples:

Create a container using the docker image nginx:latest and name the container myrunoob

runoob@runoob:~$ docker create --name myrunoob nginx:latest  
09b93464c2f75b7b69f83d56a9cfc23ceb50a48a9db7652ee4c27e3e2cb1961f

exec

docker exec : execute a command in a running container

grammar:

docker exec (-$) CONTAINER COMMAND [ARG...]

-d, --detach Detached mode: run the command in the background

-i, --interactive Keep STDIN open even if not connected

-t, --tty Allocate a pseudo-terminal (TTY)
--detach-keys Override the key sequence for detaching a container
-e, --env set environment variables
--privileged provides extended privileges to the command
--user , -u Username or UID (format: <name|uid>[:<group|gid>])
-w, --workdir working directory in the container

Examples:

Example 1: Execute the /root/runoob.sh script in the container mynginx in interactive mode:

runoob@runoob:~$ docker exec -it mynginx /bin/sh /root/runoob.sh
http://www.runoob.com/

Example 2: Open an interactive terminal in the mynginx container:

runoob@runoob:~$ docker exec -it mynginx /bin/bash
root@b1a0703e41e7:/#

Note: You can also use the docker ps -a command to view the running container, and then use the container ID to enter the container

Example 3: 9df70f9a0714 in the first column is the container ID.

Execute bash in the specified container through the exec command:

# docker exec -it 9df70f9a0714 /bin/bash

Note: This command enters a container in an interactive way (the container does not stop running after exiting with exit). For more details, see the official website

update

docker update : Update the configuration of one or more containers

grammar:

docker update (-$) CONTAINER [CONTAINER...]

--blkio-weight Block IO (relative weight), between 10 and 1000, or 0 to block (default 0)
--cpu-period Limit CPU CFS (Completely Fair Scheduler) period
--cpu-quota Limit CPU CFS (Completely Fair Scheduler) quota
--cpu-rt-period Limit CPU real-time period (in microseconds)

--cpu-rt-runtime Limit CPU real-time runtime in microseconds

--cpu-shares , -c CPU shares (relative weight)
--cpus Number of CPUs

--cpuset-cpus CPUs to allow execution (0-3,0,1)
--cpuset-mems MEM to allow execution (0-3,0,1)
--kernel-memory kernel memory limit
--memory , -m memory limit
--memory-reservation Memory soft limit
--memory-swap Swap limit equals memory plus swap: '-1 to enable unlimited swap
--restart restarts the policy applied when the container exits

Example:

Update cpu-shares of container

To limit a container's cpu-shares to 512, first identify the container name or ID. You can use docker ps to find these values. You can also use the ID returned from the docker run command. Then, do the following:

docker update --cpu-shares 512 abebf7571666

Update container with cpu-shares and memory

To update multiple resource configurations for multiple containers:

docker update --cpu-shares 512 -m 300M abebf7571666 hopeful_morse

Note: For more examples, please click the official website link above

Container rootfs commands

commit

docker commit : Create a new image from a container.

grammar:

docker commit (-$) CONTAINER [REPOSITORY[:TAG]]

-a,--author="" Author

-c, --change Use Dockerfile instructions to create an image
-m, --message="" brief description

-p, --pause=true Pause container during commit

Example:

Save the container a404c6c174a2 as a new image and add the committer information and description information.

runoob@runoob:~$ docker commit -a "runoob.com" -m "my apache" a404c6c174a2 mymysql:v1 
sha256:37af1236adef1544e8886be23010b66577647a40bc02c0885a6600b33ee28057
runoob@runoob:~$ docker images mymysql:v1
REPOSITORY TAG IMAGE ID CREATED SIZE
mymysql v1 37af1236adef 15 seconds ago 329 MB

cp

docker cp: used to copy data between the container and the host.

grammar:

docker cp (-$) CONTAINER:SRC_PATH DEST_PATH|-
docker cp (-$) SRC_PATH|- CONTAINER:DEST_PATH

-a, --archive Archive mode (copy all uid/gid information)
-L, --follow-link keep the link between source and target

Example:

Example 1: Copy the host /www/runoob directory to the /www directory of the container 96f7f14e99ab

docker cp /www/runoob 96f7f14e99ab:/www/

Example 2: Copy the host /www/runoob directory to the container 96f7f14e99ab and rename the directory to www

docker cp /www/runoob 96f7f14e99ab:/www

Example 3: Copy the /www directory of container 96f7f14e99ab to the /tmp directory of the host

docker cp 96f7f14e99ab:/www /tmp/

diff

docker diff : check changes to files or directories on the container file system

grammar:

docker diff CONTAINER

Extended description

Lists files and directories that have changed in the container's file system since the container was created. Three different types of changes are tracked:

symbol describe
A Added a file or directory
D The file or directory was deleted
C File or directory changed

Example:

View the file structure changes of the container mymysql

runoob@runoob:~$ docker diff mymysql
A /logs
A /mysql_data
C /run
C /run/mysqld
A /run/mysqld/mysqld.pid
A /run/mysqld/mysqld.sock
C /tmp

rename

docker rename : rename a container

grammar:

docker rename CONTAINER NEW_NAME

Docker management commands

In addition to the above usage commands, Docker also provides a series of management commands, as follows

builder manages the build
config Manage Docker configuration
Container Management
Engine management docker engine
Image Management Image
Network Management Network
node manages Swarm nodes
plugin management plugin
secret Manage Docker secrets
Service Management Service
Stack manages Docker stacks
swarm manages Swarm clusters
system View system information
trust manages trust in Docker images
Volume Management

We don't have to know all the above commands, because that would be a waste of time, but we can know what they do and check them on the official website when needed.

The following are the management commands we commonly use:

View Network List

docker network ls

View the swarm service list

docker service ls

Delete all images that are not tagged and not used by containers

$ docker image prune
 WARNING! This will remove all dangling images.
 Are you sure you want to continue? [y/N] y

Remove all images not used by containers:

docker image prune -a

Delete all stopped containers:

docker container prune

Remove all unmounted volumes:

docker volume prune

To delete all networks:

docker network prune

Delete all docker resources:

docker system prune

Trim the image:

docker system prune -a

Docker options

docker (-$)

--api-enable-cors=false Enable CORS headers in the remote API

-b, --bridge="" Bridge network uses "none" Disable container network

--bip="" bridge mode

-d, --daemon=false daemon mode

-D, --debug=false debug mode

--dns=[] Force Docker to use the specified DNS server

--dns-search=[] Force Docker to use the specified dns search domain

-e, --exec-driver="native" forces docker to use the specified execution driver when running

--fixed-cidr="" Fixed IPv4 subnet (e.g. 10.20.0.0/16) must be nested in the bridge subnet (defined by -b or --bip)

-G, --group="docker" When running in daemon mode, the group refers to the unix socket specified by -H. Use "" to disable group settings.

-g, --graph="/var/lib/docker" The root directory path of the container

-H, --host=[] Bind socket to daemon mode. Use one or more of tcp://host:port, unix:///path/to/socket, fd://* or fd://socketfd.

--icc=true inter-container cross-container communication

--insecure-registry=[] Enable insecure communication (no certificate validation for HTTPS and enabling HTTP fallback) using the specified registry (e.g., localhost:5000 or 10.20.0/16)

--ip="0.0.0.0" The IP address to use when binding the container port

--ip-forward=true Use net.ipv4.ip_forward to forward
--ip-masq=true Make IP masquerade as the bridge's IP range
--iptables=true enables Docker to add iptables rules
--mtu=0 Set container network mtu

-p, --pidfile="/var/run/docker.pid" specifies the daemon process pid file location

--registry-mirror=[] specifies a preferred mirror repository (acceleration address)
-s, --storage-driver="" Force Docker to use the specified storage driver when running

--selinux-enabled=false Enable selinux support

--storage-opt=[] Set storage driver options

--tls=false Enable tls

--tlscacert="/root/.docker/ca.pem" only trusts certificates signed by the CA

--tlscert="/root/.docker/cert.pem" tls certificate file location

--tlskey="/root/.docker/key.pem" tls key file location

--tlsverify=false Use tls and verify the remote control host

-v, --version=false Output Docker version information

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Basic introduction and use of Docker container image related commands
  • Summary of essential Docker commands for developers
  • Summary and analysis of commonly used Docker commands and examples
  • Detailed explanation of common Docker commands
  • Summary of common docker commands
  • Summary of common docker commands (recommended)
  • A complete guide to the Docker command line (18 things you have to know)
  • Introduction to common Docker commands

<<:  Detailed explanation of Vue ElementUI manually uploading excel files to the server

>>:  Graphic tutorial on installing the latest version of MySQL server on Windows 7 64 bit

Recommend

Ubuntu 20.04 firewall settings simple tutorial (novice)

Preface In today's increasingly convenient In...

Two ways to create SSH server aliases in Linux

Preface If you frequently access many different r...

CSS solves the misalignment problem of inline-block

No more nonsense, post code HTML part <div cla...

vue+tp5 realizes simple login function

This article example shares the specific code of ...

25 Tools to Improve Website Usability and Conversion Rates

For a website, usability refers to whether users c...

Use render function to encapsulate highly scalable components

need: In background management, there are often d...

Page Refactoring Skills - Javascript, CSS

About JS, CSS CSS: Stylesheet at the top Avoid CS...

WeChat Mini Program QR Code Generation Tool weapp-qrcode Detailed Explanation

WeChat Mini Program - QR Code Generator Download:...

Creation, constraints and deletion of foreign keys in MySQL

Preface After MySQL version 3.23.44, InnoDB engin...

Example method of viewing IP in Linux

Knowing the IP address of a device is important w...

Analysis and solution of data loss during Vue component value transfer

Preface In the previous article Two data types in...

How to explain TypeScript generics in a simple way

Table of contents Overview What are Generics Buil...

MySQL 8.0 upgrade experience

Table of contents Preface 1. First completely uni...

Solution to the problem that the Vue page image does not display

When making a new version of the configuration in...

Sitemesh tutorial - page decoration technology principles and applications

1. Basic Concepts 1. Sitemesh is a page decoratio...