mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-23 06:46:09 +08:00
17 lines
359 B
YAML
17 lines
359 B
YAML
version: '2'
|
|
services:
|
|
web:
|
|
image: whyour/qinglong:latest
|
|
volumes:
|
|
- ./data/config:/ql/config
|
|
- ./data/log:/ql/log
|
|
- ./data/db:/ql/db
|
|
- ./data/scripts:/ql/scripts
|
|
- ./data/repo:/ql/repo
|
|
ports:
|
|
- "0.0.0.0:5700:5700"
|
|
environment:
|
|
- ENABLE_HANGUP=true
|
|
- ENABLE_WEB_PANEL=true
|
|
restart: always
|