By accessing the website and accepting the Cookie Policy, you agree to use the cookies provided by the Site in accordance with to analyze traffic, remember your preferences, and optimize your experience.
OK
emengweb 's Blog
Figma YES!
Toggle navigation
emengweb 's Blog
主页
Debian
CAT玉米
VI设计
NAS
OctoberCMS
UIKit3
宝塔面板
Python
SVG相关
PVE
Figma
VPS独服务记录
K8S
About Me
归档
标签
标签 - 容器
Docker实践:容器的管理(创建、查看、启动、终止、删除)
docker
容器
2019-02-22 14:53:24
225
0
0
一、创建
docker create
:创建容器,处于停止状态。
centos:latest
:centos容器:最新版本(也可以指定具体的版本号)。
本地有就使用本地镜像,没有则从远程镜像库拉取。
创建成功后会返回一个容器的ID。
docker run
:创建并启动容器。
交互型容器
:运行在前台,容器中使用exit命令或者调用docker stop
查看