18 lines
No EOL
342 B
YAML
18 lines
No EOL
342 B
YAML
version: "3.6"
|
|
|
|
services:
|
|
webui:
|
|
image: webui:local
|
|
ports:
|
|
- "8080:80"
|
|
stop_signal: SIGQUIT
|
|
deploy:
|
|
replicas: 1
|
|
update_config:
|
|
order: start-first
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "localhost:80/health"]
|
|
interval: 1m
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 30s |