A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

1、拉取nginx镜像:docker pull nginx:1.14。

2、新建/启动容器。

docker run -p 80:80 --name nginx1.14

-v $PWD/www:/www

将当前目录的www目录挂在到容器的/www目录。

-v $PWD/conf/nginx.conf:/etc/nginx/nginx.conf

将当前的conf/nginx.conf目录挂在到nginx的conf/nginx.conf

-v $PWD/logs:/wwwlogs

将当前的logs目录挂在到nginx的wwwlogs目录。

-v $PWD/html:/usr/share/nginx/html

-d nginx

docker run --privileged=true --name nginx1.14 -d -p 80:80 -v /data/nginx/html:/usr/share/nginx/html -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /data/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf -v /data/nginx/logs:/var/log/nginx -v /data/nginx/www:/www -v /data/nginx/wwwlogs:/wwwlogs -d nginx:1.14


1 个回复

倒序浏览
奈斯,感谢分享!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马