容器状态

在使用了几天docker之后,大概会用了,虽然坑走过了,再复现也不难,但是终归不想再重复一边。
之前听同事说,这个容器是可以被关闭的,额。。。担心容器里操作的数据没了,所以要了解一些容器的状态

首先要知道容器的状态:

docker ps -a

返回的内容中,有一个字段是STATUS

STATUS: 容器状态。
状态有7种:
created(已创建)
restarting(重启中)
running(运行中)
removing(迁移中)
paused(暂停)
exited(停止)
dead(死亡)

这些状态中,最重要和常见的是除了restarting(重启中)和removing(迁移中)之外的五个状态,下面基本上网络上大部分的容器生命周期图都只包含五个状态:created(已创建),running(运行中),paused(暂停),exited(停止),dead(死亡)。

最常见的一种,当某容器因为某些原因变成exited状态时,可以使用start重新启动,例如:当运行时,提示这个容器未在运行,同时使用docker ps时没有显示出该容器

create docker 不能start docker status created_容器


随后,想要重新新建一个容器,发现提示之前创建的容器其实还在,使用docker ps -a查看所有容器,看到:其实是处于exited状态

create docker 不能start docker status created_Docker_02


随后,使用docker start OCR重新启动了这个容器,检查了一下,里面的东西还是都在的。

create docker 不能start docker status created_容器_03

类似exited(停止)

create docker 不能start docker status created_Docker_04


UP还在运行中(running)

create docker 不能start docker status created_docker_05


另外,如果想知道这些状态,最简单的方式是,docker --help,返回的信息中,可以看到:

# 用来创建容器
create      Create a new container
# 在一个运行状态的容器中执行命令
exec        Run a command in a running container
# 杀死运行中的容器
kill        Kill one or more running containers
# 让容器暂停
pause       Pause all processes within one or more containers
# 恢复容器
unpause     Unpause all processes within one or more containers
# 重启容器
restart     Restart one or more containers
# 新建并初始化一个容器(注意 是一个新的容器)
 run         Run a command in a new container
# 启动一个被停止的容器
 start       Start one or more stopped containers
# 暂停运行中的容器
stop        Stop one or more running containers

容器生命周期

可以谷歌 container lifecycle去看看相关的内容,主要搜图,可以看到有很多图,就像进程的生命周期一样。

主要反映了created(已创建),running(运行中),paused(暂停),exited(停止),dead(死亡)这五个状态的一个变化关系。

下面这个图的started就约等于running。

create docker 不能start docker status created_生命周期_06


源自:Introduction to the Docker Life Cycle下面这个图的stopped就约等于exited

create docker 不能start docker status created_运维_07


源自: Docker Container Lifecycle Management: Create, Run, Pause, Stop And Delete

create docker 不能start docker status created_生命周期_08


create docker 不能start docker status created_Docker_09


create docker 不能start docker status created_Docker_10


create docker 不能start docker status created_运维_11

参考:

  • Docker Container Lifecycle Management: Create, Run, Pause, Stop And Delete
  • Introduction to the Docker Life Cycle 这个文章的中文翻译:

个人使用容器的状态变化

初学者,针对个人日常使用,不是项目维护,公司服务器就几个人用,所以不是非常专业。我个人使用容器的一个大概流程:

  • docker run 创建并运行一个容器(run=creat+start),例如:docker run --name mynginx -d nginx:latest
  • create docker 不能start docker status created_docker_12

  • 使用完了之后,一般输入exit退出容器环境,此时再去查看容器,还是处于running状态(started)。因为这个exit实际上退出的是当前的容器shell。
  • create docker 不能start docker status created_docker_13

  • 然后如果想要进去(run的时候加了-d,表明让容器在后台运行),可以使用exec命令,类似:docker container exec -it OCR /bin/bash(这个语句的作用是:对于running状态的容器发送指令,让它执行bash,即打开容器的bash交互)

这种场景下,容器一直没有被关闭/停止/删除,一直是打开的。