brady-wang
https://github.com/branchzero/yapi-docker


mkdir -p /www/yapi

cd /www && git clone https://github.com/branchzero/yapi-docker.git yapi

chmod -R 777 /www/yapi

docker-compose up -d

访问 http://192.168.33.70:3000


可在nginx配置下面的域名 后通过域名访问
server {
    listen     80;
    server_name your.domain;
    keepalive_timeout   70;

    location / {
        proxy_pass http://192.168.33.70:3000;
    }
    location ~ /\. {
        deny all;
    }
}

  

分类:

技术点:

相关文章:

  • 2021-11-19
  • 2021-11-23
  • 2021-11-07
  • 2021-11-03
  • 2021-12-11
  • 2021-06-08
  • 2021-07-28
  • 2021-08-02
猜你喜欢
  • 2021-11-23
  • 2021-05-18
  • 2022-01-31
  • 2021-12-15
相关资源
相似解决方案