Home  >  Q&A  >  body text

docker nginx 基础配置问题

刚学习Docker,目前用。
docker run -d -p 80:80 nginx 作为启动一个Nginx的程序并监听80端口,访问该服务器ip时有nginx的默认页面。

那么该如何启动时配置一个对应的nginx.conf文件,使的访问指定目录下的静态文件呢?

天蓬老师天蓬老师2760 days ago570

reply all(2)I'll reply

  • 伊谢尔伦

    伊谢尔伦2017-04-22 08:58:13

    Mount the configuration directory and static file directory outside the host system

    reply
    0
  • 巴扎黑

    巴扎黑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

    reply
    0
  • Cancelreply