From 5045889b4c4e2a8fd9700491748aba2ea32a3266 Mon Sep 17 00:00:00 2001 From: gibbyDev Date: Sun, 12 Jul 2026 21:11:59 -0400 Subject: [PATCH] I am batman --- docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..5f990c5 --- /dev/null +++ b/docker-compose.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"