1. 下载镜像
docker pull nginx
2. 创建并启动容器
docker run -d --name nginx01 -p 3344:80 nginx
3. 测试
curl localhost:3344