From 5c0664081be8b2e279b0e3b2b6040809aa7977a0 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Sun, 16 Aug 2026 06:29:56 -0400 Subject: [PATCH] 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. --- docker-compose.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..0038b1b --- /dev/null +++ b/docker-compose.yml @@ -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"