From 50c258c54057741a290a8303baa083893c048b5d Mon Sep 17 00:00:00 2001 From: jeffrey Date: Mon, 12 May 2025 15:41:42 +0200 Subject: [PATCH] Change configuration for local debugging --- docker-compose.yaml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 61b2d98..017a49a 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,18 +1,23 @@ services: reverse_proxy: - image: git.rezel.net/ludotech/traque-proxy:latest + #image: git.rezel.net/ludotech/traque-proxy:latest + build: ./proxy ports: - "80:80" restart: always front: - image: git.rezel.net/ludotech/traque-front:latest + #image: git.rezel.net/ludotech/traque-front:latest + build: ./traque-front restart: always environment: - NEXT_PUBLIC_SOCKET_HOST: 'traque.rezel.net' + NEXT_PUBLIC_SOCKET_HOST: 'localhost' + NEXT_PUBLIC_SOCKET_PORT: 3001 + #NEXT_PUBLIC_SOCKET_HOST: 'traque.rezel.net' back: - image: git.rezel.net/ludotech/traque-back:latest + #image: git.rezel.net/ludotech/traque-back:latest + build: ./traque-back restart: always ports: - "3001:3001" @@ -20,3 +25,5 @@ services: ADMIN_PASSWORD_HASH: '23e3c6886ff8fcba302deac05c46612ed3af99e40a2a14252810f540f3c186aa' HOST: '0.0.0.0' PORT: 3001 + +