# 启动

systemctl start docker

# 停止

systemctl stop docker

# 查看 Docker 磁盘使用情况

docker system df

# 修改容器命令

docker update <containerId> 参数
## 容器自动启动
docker update abc123 --restart=always
## 容器禁止自动启动
docker update abc123 --restart=no
上次更新: 2022/05/20 14:08:49