From 3946836e2ec2140ecbdb6a2591e86f45dfac0da5 Mon Sep 17 00:00:00 2001 From: Hammer Date: Wed, 28 Jan 2026 16:27:07 +0000 Subject: [PATCH] Add Dokploy-specific docker-compose --- docker-compose.dokploy.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docker-compose.dokploy.yml diff --git a/docker-compose.dokploy.yml b/docker-compose.dokploy.yml new file mode 100644 index 0000000..af318aa --- /dev/null +++ b/docker-compose.dokploy.yml @@ -0,0 +1,28 @@ +services: + api: + build: + context: ./apps/api + dockerfile: Dockerfile + restart: unless-stopped + ports: + - 3001 + environment: + - DATABASE_URL=${DATABASE_URL} + - PORT=3001 + - NODE_ENV=production + - APP_URL=${APP_URL} + - ALLOWED_ORIGINS=${ALLOWED_ORIGINS} + - BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET} + - RESEND_API_KEY=${RESEND_API_KEY} + - FROM_EMAIL=${FROM_EMAIL} + - HAMMER_API_KEY=${HAMMER_API_KEY} + + web: + build: + context: ./apps/web + dockerfile: Dockerfile + restart: unless-stopped + ports: + - 80 + environment: + - VITE_API_URL=${VITE_API_URL:-https://api.todo.donovankelly.xyz}