mirror of https://github.com/6dylan6/jdpro.git
18 lines
385 B
YAML
18 lines
385 B
YAML
|
version: '2'
|
||
|
services:
|
||
|
ql_web:
|
||
|
image: whyour/qinglong:2.11.3
|
||
|
container_name: ql
|
||
|
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
|