Docker容器命令

Docker将镜像转为容器

1
docker run --name containerName -p 80:80 -d nginx

查看docker容器状态

1
docker ps

查看日志

1
docker logs 容器名称