Add docker-compose.yml

This commit is contained in:
L1n3 2021-08-30 01:31:16 +08:00
parent 0833aa3b30
commit 7d28d5d24c

17
docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
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/jbot:/ql/jbot
- ./data/repo:/ql/repo
ports:
- "0.0.0.0:5700:5700"
environment:
- ENABLE_HANGUP=true
- ENABLE_WEB_PANEL=true
restart: always