Docker 包括三个基本概念:
镜像(Image):
Docker 镜像(Image),就相当于是一个 root 文件系统。比如官方镜像 ubuntu:16.04 就包含了完整的一套 Ubuntu16.04 最小系统的 root 文件系统。
容器(Container):
镜像(Image)和容器(Container)的关系,就像是面向对象程序设计中的类和实例一样,镜像是静态的定义,容器是镜像运行时的实体。容器可以被创建、启动、停止、删除、暂停等。
仓库(Repository):
仓库可看成一个代码控制中心,用来保存镜像。
Docker 使用客户端-服务器 (C/S) 架构模式,使用远程API来管理和创建Docker容器。
Docker 容器通过 Docker 镜像来创建。容器与镜像的关系类似于面向对象编程中的对象与类。
制作属于自己的Docker镜像,一般有两种方式,第一种为commit方式,利用已有的镜像,运行后安装定制自己需要的环境,然后生成镜像;另一种就是build方式,通过编写Dockerfile命令脚本进行生成镜像。
准备工作
准备一个用来制作镜像的容器。这里我们使用centos安装nginx的容器。容器的制作方法如下,拉取 CentOS7 镜像
1、docker images 当前镜像空
2、docker pull centos:centos7 拉取镜像
3、进入镜像,安装nignx
docker run -it docker.io/centos:centos7 /bin/bash
安装 wget
yum install wget -y
4、启动容器
这里能看到我们的容器ID为f244d3271c14,就是用该容器,制作一个自己的镜像。
使用docker commit制作镜像
语法如下:
&docker commit
1、docker commit f244d3271c14 centos7:wget
发布镜像
这里将镜像发布到hub.docker.com,docker的官方仓库。需要https://hub.docker.com/注册账号,使用命令行登录到docker hub
使用自己的镜像->创建容器
&docker run -it lxshub/centos7:wget /bin/bash
docker删除注意点:
1. 删除前需要保证容器是停止的 stop
2. 需要注意删除镜像和容器的命令不一样。 docker rmi ID ,其中 容器(rm) 和 镜像(rmi)
3. 顺序需要先删除容器
#暂停所有容器
docker stop $(docker ps -a -q)
#删除所有容器
docker rm $(docker ps -a -q)
#删除所有镜像
docker rmi $(docker images -q)
登录的信息保存在 .docker/config.json
方法参考:
https://blog.csdn.net/qq_15371293/article/details/122358178
https://blog.csdn.net/qq_36274515/article/details/87910704
dockerCommands:
attach Attach local standard input, output, and error streams to a running container
build Build an image from a Dockerfile
commit Create a new image from a container's changes
cp Copy files/folders between a container and the local filesystem
create Create a new container
diff Inspect changes to files or directories on a container's filesystem
events Get real time events from the server
exec Run a command in a running container
export Export a container's filesystem as a tar archive
history Show the history of an image
images List images
import Import the contents from a tarball to create a filesystem image
info Display system-wide information
inspect Return low-level information on Docker objects
kill Kill one or more running containers
load Load an image from a tar archive or STDIN
login Log in to a Docker registry
logout Log out from a Docker registry
logs Fetch the logs of a container
pause Pause all processes within one or more containers
port List port mappings or a specific mapping for the container
ps List containers
pull Pull an image or a repository from a registry
push Push an image or a repository to a registry
rename Rename a container
restart Restart one or more containers
rm Remove one or more containers
rmi Remove one or more images
run Run a command in a new container
save Save one or more images to a tar archive (streamed to STDOUT by default)
search Search the Docker Hub for images
start Start one or more stopped containers
stats Display a live stream of container(s) resource usage statistics
stop Stop one or more running containers
tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
top Display the running processes of a container
unpause Unpause all processes within one or more containers
update Update configuration of one or more containers
version Show the Docker version information
wait Block until one or more containers stop, then print their exit codes
查看docker下面的容器(ID可以从dcoker ps -a获取);
&sudo docker ps
Docker容器的退出操作有两种情况:
1、容器外面,关闭容器,这种情况退出方式多样,存在着是否保存他的运行情况,Ctrl+P和Ctrl+Q分别按,可以退出容器,让容器仍运行,命令Ctrl+D和exist退出容器,不运行、在容器里面退出可以使用docker stop 容器名/id。
2、是关于启动的,我们可以使用 docker attach 容器名/id 连接已经启动的容器 和docker start 容器名/id启动关闭的容器
实例:
1.查看镜像名(sudo docker images
)
2.创建容器
docker run -it (容器的名字) /bin/bash
命令主要为docker run , 等价于先执行docker create命令,在执行docker start命令
数说明:
-i:
交互式操作。
-t:
终端。
ubuntu: ubuntu
镜像。
/bin/bash:
放在镜像名后的是命令,这里我们希望有个交互式 Shell,因此用的/bin/bash。
要退出终端,直接输入 exit
:
在大部分的场景下,我们希望 docker 的服务是在后台运行的,我们可以过 -d 指定容器的运行模式(注在镜像名后面加上对应的tag)
&sudo docker run -itd --name manba nvidia-ai-build:v1
&docker run -it -d -p 8084:8080 --name=stars stars:v1
查看docker启动状态(最后一个参数star:v1
是我们前面制作出来的镜像的REPOSITORY
和TAG
用引号拼接
name=stars 是定义启动的容器的名字,后面使用命令查看容器的时候看到的IMAGE就是
8080
使我们在项目中定义的项目访问端口
8084
是docker启动的容器的访问端口
(docker不会允许直接访问项目的端口,会给我们做一个映射,就像nginx一样,我们浏览器访问项目的时候使用8084,docker会给我们映射到服务器项目的8080端口上。)
&systemctl status docker
4.查看docker版本
&docker version
5.检查加速器是否生效
检查加速器是否生效配置加速器之后,如果拉取镜像仍然十分缓慢,请手动检查加速器配置是否生效,在命令行执行 docker info,如果从结果中看到了如下内容,说明配置成功执行docker info
$ docker info
Registry Mirrors:
https://reg-mirror.qiniu.com
6.OPTIONS说明:
docker run [OPTIONS] IMAGE [COMMAND] [ARG…]
-a
指定标准输入输出内容类型,可选 STDIN/STDOUT/STDERR 三项。
-d
后台运行容器,并返回容器ID。 #使用docker镜像mysql:5.7以后台模式启动一个容器,并将容器命名为mysql。 docker run --name mysql -d mysql:5.7
-e
设置环境变量。 #使用docker镜像mysql:5.7以后台模式启动一个容器,并将容器命名为mysql #将容器的3306端口映射到主机3307端口 #将root用户的密码设为root 。
docker run -p 3307:3306 --name mysql\ -e MYSQL_ROOT_PASSWORD=root\ -d mysql:5.7
-h指定容器的hostname。
-i
以交互模式运行容器,通常与 -t 同时使用。
-m
设置容器使用内存最大值。
-P
随机端口映射,容器内部端口随机映射到主机的端口。
使用镜像mysql:5.7以后台模式启动一个容器,并将容器的3306端口映射到主机随机端口。
docker run -P -d mysql:5.7
-p
指定端口映射,格式为:主机(宿主)端口:容器端口。 使用镜像mysql:5.7以后台模式启动一个容器,并将容器的3306端口映射到主机3307端口。
docker run -p 3307:3306 -d mysql:5.7
-t
为容器重新分配一个伪输入终端,通常与 -i 同时使用。
-v
绑定一个卷。 #使用镜像mysql:5.7,以后台模式启动一个容器,将容器的3306端口映射到主机的3306端口 #的容器目录/etc/mysql/data映射到主机的/mydata/myql/data。
docker run -p 3306:3306 -v /mydata/myql/data:/etc/mysql/data -d mysql:5.7
--cpuset
绑定容器到指定CPU运行。
--dns
指定容器使用的DNS服务器,默认和宿主一致。
--dns-search
指定容器DNS搜索域名,默认和宿主一致。
--env-file
从指定文件读入环境变量。
--expose
开放一个端口或一组端口。
--link
添加链接到另一个容器。
--name
为容器指定一个名称。 #使用docker镜像mysql:5.7以后台模式启动一个容器,并将容器命名为mysql。 docker run --name mysql -d mysql:5.7
--net
指定容器的网络连接类型,支持 bridge/host/none/container: 四种类型。
-volume
绑定一个卷。 通过浏览器访问接口即可http://192.168.1.1:8084/test