From c29350a9802f9a4a477c5f793805d0f8296fcb79 Mon Sep 17 00:00:00 2001 From: gibbyDev Date: Sun, 12 Jul 2026 21:09:59 -0400 Subject: [PATCH] I am batman --- docker-compose.prod.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docker-compose.prod.yml diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml new file mode 100644 index 0000000..5f990c5 --- /dev/null +++ b/docker-compose.prod.yml @@ -0,0 +1,12 @@ +services: + frontend: + build: + context: . + dockerfile: Dockerfile + args: + NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL:-http://localhost:8080/api/v1} + restart: unless-stopped + environment: + NEXT_PUBLIC_API_URL: ${NEXT_PUBLIC_API_URL:-http://localhost:8080/api/v1} + ports: + - "3000:3000"