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"