美文网首页开发环境
CentOS安装Docker Nginx

CentOS安装Docker Nginx

作者: XiaoMaPro | 来源:发表于2022-04-09 23:19 被阅读0次

    拉取Nginx镜像

    docker pull nginx:latest
    

    运行启动Nginx docker 配置容器映射本地磁盘存储路径

    docker run --name webnginx -d --restart=always -p 8080:80 -v /home/data/nginx/html:/usr/share/nginx/html  -v /home/data/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf -v /home/data/nginx/log:/var/log/nginx nginx
    

    相关文章

      网友评论

        本文标题:CentOS安装Docker Nginx

        本文链接:https://www.haomeiwen.com/subject/stvmsrtx.html