13 lines
306 B
YAML
13 lines
306 B
YAML
services:
|
|
tidal-proxy:
|
|
build: .
|
|
ports:
|
|
- "${PORT:-8080}:8080"
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8080/health"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|