docker run -d -p 80:80\ -p 8088:8088 \ -v /home/xxx/xxx/xxx/conf/nginx.conf:/etc/nginx/nginx.conf \ -v /home/xxx/xxx/xxx/dist:/home/usc/dist \ --name nginx \ nginx:latest # -p 指定端口 -v 挂载目录 --name 指定容器的名称 nginx:latest指定镜像的版本 docker inspect naginx 可以查看容器基本信息 nginx.conf文件中设置的目录需要是容器中的目录!!
标签:xxx,nginx,conf,镜像,home,docker From: https://www.cnblogs.com/dengsheng/p/17417551.html