12 lines
241 B
YAML
12 lines
241 B
YAML
services:
|
|
relay:
|
|
build: .
|
|
ports:
|
|
- "8543:8443"
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8443/health"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|