docker 基础命令

docker run --name 给自己容器起名称 --restart =always 开机自动启动 -p 80:80 -d 后台启动

docker exec -it 容器名称或ID /bin/bash

docker commit -a "修改的作者" -m "修改的内容" 后面根上容器ID或容器名称

docker save -o nginx.tar 后面是容器ID或容器名称

docker load -i nginx.tar 加载镜像

docker run --name mynginx --restart always -d -p 80:80 -v /data/nginx/html:/user/share/nginx/html:rw nginx

docker run --name mynginx --restart always -d -p 80:80

-v /data/nginx/html:/user/share/nginx/html:rw

-v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf

nginx

docker cp  容器ID:/etc/nginx/nginx.conf  /data/nginx/conf/nginx.conf

docker run --name mynginx -

docker 正在运行当中的

docker ps

docker ps -a

docker images

docker pull

docker rmi

docker start

docker stop

docker rm

docker logs

你可能感兴趣的:(docker,docker)