Add Docker Compose deployment for graphfx-ui

This commit is contained in:
2026-06-18 23:48:37 +02:00
parent 7b814b440f
commit 9c92ef42a1
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
services:
graphfx-ui:
build:
context: .
image: graphfx-ui:local
container_name: graphfx-ui
restart: unless-stopped
ports:
- "18081:80"
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1/"]
interval: 30s
timeout: 3s
retries: 3
start_period: 5s