ubuntu
容器
root@haima-PC:/home/haima/Desktop# docker run -d --name ubuntu-lnmp ubuntu
bf243aabfe110f1aed17a6298c5dbe33df2d023e18fa2f1e1cdb9682d289f710
2.进入容器
root@haima-PC:/home/haima/Desktop# docker exec -it ubuntu-lnmp /bin/bash
root@bf243aabfe11:/# cd /home
root@bf243aabfe11:/home# ls
root@bf243aabfe11:/home# mkdir test
root@bf243aabfe11:/home# ls
test
3.退出容器 exit
4.查看所有的container,包括运行中的,以及未运行的或者说是沉睡镜像,则运行:
docker ps -a
root@haima-PC:/home/haima/Desktop# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
bf243aabfe11 ubuntu "/bin/bash" 5 minutes ago Up 5 minutes ubuntu-lnmp
d4d18c2d2025 centos:v4 "/bin/bash" 2 months ago Up 3 hours centos_env
5.运行已经关闭的容器
root@haima-PC:/home/haima/Desktop# docker start ubuntu-lnmp
ubuntu-lnmp
其中“ubuntu-lnmp”是容器的名称。这里会后台运行容器,进入容器再退出后,容器也不会关闭
6.进入容器root@haima-PC:/home/haima/Desktop# docker exec -it ubuntu-lnmp /bin/bash
root@b8cc973c3d4d:/#
- ubuntu-lnmp:要启动的container的名称
- /bin/bash:在container中启动一个bash shell
输入:
exit
或者按键:
Ctrl + D