刚学习Docker,目前用。
docker run -d -p 80:80 nginx 作为启动一个Nginx的程序并监听80端口,访问该服务器ip时有nginx的默认页面。
那么该如何启动时配置一个对应的nginx.conf文件,使的访问指定目录下的静态文件呢?
伊谢尔伦2017-04-22 08:58:13
Mount the configuration directory and static file directory outside the host system
巴扎黑2017-04-22 08:58:13
Add -v when running to mount the local configuration directory to the nginx configuration directory, so that the container and the local directory will share a directory