Docker 启动 Nginx

启动容器

# 映射 9003 端口
# 映射当前目录下的 html 目录
docker run -d \
    --name nginx-test \
    -p 9003:80 \
    nginx:1.17.9

访问

http://ip:9003/