Add a generic production docker-compose.yml

Lets someone outside Reground's infra run vu standalone: builds the image and exposes it on localhost:8080, independent of the reground.org-specific compose config that joins an external network with no published port.
This commit is contained in:
2026-08-16 06:29:56 -04:00
parent 2c7ab3419d
commit 5c0664081b
+10
View File
@@ -0,0 +1,10 @@
# Generic production compose file — builds the static bundle and serves it
# with Caddy on port 8080. Not tied to any particular host's network/proxy
# setup; put a reverse proxy or TLS terminator in front of it as needed.
services:
vu:
build: .
container_name: vu
restart: unless-stopped
ports:
- "8080:80"