From 0254a6936139801ee10fac27cc5032258d13051d Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Sun, 15 Mar 2026 15:46:00 +0900 Subject: update to work with dokploy --- docker-compose.prod.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docker-compose.prod.yml (limited to 'docker-compose.prod.yml') diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml new file mode 100644 index 0000000..131e865 --- /dev/null +++ b/docker-compose.prod.yml @@ -0,0 +1,27 @@ +# -------------------------------------------------------------------------- +# docker-compose.prod.yml — Production deployment for the Bicycle Wheel +# Circumference app. +# +# Builds a static bundle and serves it with Nginx on port 80. +# Designed for use with Dokploy (Traefik handles TLS and routing). +# +# Local usage: +# docker compose -f docker-compose.prod.yml up -d --build +# → open http://localhost:80 +# +# Dokploy usage: +# Set the Compose Path to ./docker-compose.prod.yml in Dokploy. +# Dokploy will inject Traefik labels and the dokploy-network +# automatically — do NOT add them here. +# -------------------------------------------------------------------------- + +services: + web: + build: + context: . + dockerfile: Dockerfile.prod + restart: unless-stopped + # No ports mapping needed when behind Traefik/Dokploy. + # Uncomment the line below for local testing without a reverse proxy. + # ports: + # - "80:80" -- cgit v1.2.3