添加 docker-compose.yml (#629)

This commit is contained in:
L1n3 2021-08-31 15:52:24 +08:00 committed by GitHub
parent 3fceb983e6
commit f5f036372f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
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