This commit is contained in:
Tomas Dvorak
2026-04-02 10:16:30 +02:00
parent 0cabd3bf1c
commit ab01f915c3
15 changed files with 325 additions and 21 deletions
+7 -1
View File
@@ -1,8 +1,9 @@
version: '3.8'
name: swingmusic
services:
swingmusic:
build: .
container_name: swingmusic
ports:
- "1970:1970"
volumes:
@@ -13,6 +14,11 @@ services:
- DRAGONFLYDB_PORT=6379
depends_on:
- dragonfly
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:1970/healthz', timeout=3)"]
interval: 20s
timeout: 5s
retries: 5
restart: unless-stopped
networks:
- swingmusic-network