mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
15 lines
330 B
YAML
15 lines
330 B
YAML
version: '2'
|
|
services:
|
|
web:
|
|
image: whyour/qinglong:latest
|
|
volumes:
|
|
- ./data:/ql/data
|
|
ports:
|
|
- "0.0.0.0:5700:5700"
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-sf", "http://127.0.0.1:5400/api/health", "||", "exit", "1"]
|
|
interval: 2m
|
|
timeout: 10s
|
|
retries: 3
|