From ba894b704ef5907fda79e61127ace67692056545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Pruneau?= Date: Tue, 30 Dec 2025 11:51:19 -0500 Subject: [PATCH] Added docker-compose file --- docker-compose.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..1d6df07 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,26 @@ +--- +name: app-targo +services: + backend: + build: + context: https://git.targo.ca/Targo/targo_backend.git + args: + - CALLBACK_URL=http://${SERVER_IP}:${BACKEND_PUBLIC_PORT}/auth/callback + environment: + - REDIRECT_URL_DEV=http://${SERVER_IP}:${FRONTEND_PUBLIC_PORT}/#/login-success + env_file: + - stack.env + ports: + - ${BACKEND_PUBLIC_PORT}:3000 + + frontend: + build: + context: https://git.targo.ca/Targo/targo_frontend.git + args: + - BACKEND_URL=http://${SERVER_IP}:${BACKEND_PUBLIC_PORT}/ + volumes: + - .:/app + env_file: + - stack.env + ports: + - ${FRONTEND_PUBLIC_PORT}:9000 \ No newline at end of file