docker常用命令

docker常用命令

1. 启动命令run

  • -p:映射端口
# 容器的80端口映射到宿主机的8000端口上
docker run -itd -p 8000:80 centos:latest /bin/bash

相关推荐