Files
arcana-fx/docker-compose.yml
2026-05-20 23:51:18 +02:00

21 lines
423 B
YAML

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