docker-compose Yapi、Gogs
version: '3'
services:
yapi-web:
image: nightz/yapi:latest
container_name: yapi-web
restart: always
ports:
- "10031:3000"
environment:
- YAPI_ADMIN_ACCOUNT=seven_nighter@163.com
- YAPI_ADMIN_PASSWORD=seven_nighter
- YAPI_CLOSE_REGISTER=true
- YAPI_DB_SERVERNAME=yapi-mongo
- YAPI_DB_PORT=27017
- YAPI_DB_DATABASE=yapi
- YAPI_MAIL_ENABLE=false
- YAPI_LDAP_LOGIN_ENABLE=false
- YAPI_PLUGINS=[]
depends_on:
- yapi-mongo
links:
- yapi-mongo
logging:
driver: "json-file"
options:
max-size: "50M"
max-file: "1"
yapi-mongo:
image: nightz/mongo:latest
container_name: yapi-mongo
restart: always
volumes:
- /mnt/data/db:/data/db
expose:
- 27017
logging:
driver: "json-file"
options:
max-size: "50M"
max-file: "1"
gogs:
image: nightz/gogs:latest
container_name: gogs
restart: always
ports:
- "10022:22"
- "10030:3000"
volumes:
- /mnt/data/gogs:/data
logging:
driver: "json-file"
options:
max-size: "50M"
max-file: "1"
nginx:
image: nightz/nginx:latest
restart: always
container_name: nginx
ports:
- "80:80"
volumes:
- .:/etc/nginx/conf.d
logging:
driver: "json-file"
options:
max-size: "50M"
max-file: "1"
server {
listen 80;
server_name git.yishi.com;
client_max_body_size 100m;
location / {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Fix the "It appears that your reverse proxy set up is broken" error.
proxy_pass http://172.17.0.1:10030;
}
}
server {
listen 80;
server_name yapi.yishi.com;
location / {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Fix the "It appears that your reverse proxy set up is broken" error.
proxy_pass http://172.17.0.1:10031;
}
}
本文来自博客园,作者:一石数字欠我15w!!!,转载请注明原文链接:https://www.cnblogs.com/52-qq/p/15533710.html