Add Docker deployment, matching Djupet's setup
Docker / build-and-push (push) Successful in 1m17s

Multi-stage build (node build -> nginx:alpine serve), docker-compose
with a configurable HOST_PORT (default 47174, an unusual port left
free for nginx proxy manager to front later), and a Gitea Actions
workflow that builds/pushes the image on push to main.

Verified: image builds, container serves the app and all art assets
on port 47174.
This commit is contained in:
Fredrik Johansson
2026-08-09 21:55:04 +02:00
parent 442c28e107
commit 1cf768183d
6 changed files with 96 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
services:
app:
image: ${IMAGE:-vildhjarta:local}
restart: unless-stopped
ports:
- "${HOST_PORT:-47174}:80"