Initial Arcana FX soundboard

This commit is contained in:
Hermes Agent
2026-05-20 23:51:18 +02:00
commit 232e6923e3
19 changed files with 2520 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
arcana-fx:
build: .
image: arcana-fx:latest
container_name: arcana-fx
restart: unless-stopped
env_file:
- .env
environment:
PORT: 8091
ports:
- "8091:8091"
volumes:
- ./config:/app/config:ro
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8091/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s