From 1710ba7b8c9b109984c04d7ce3e6869a19c1042a Mon Sep 17 00:00:00 2001 From: Markus Kahl Date: Mon, 30 Sep 2024 14:42:50 +0100 Subject: [PATCH] remove host name and CLI proxy which are not necessary by default --- docker-compose.override.example.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/docker-compose.override.example.yml b/docker-compose.override.example.yml index d55e1f05c265..85dc5a5a972b 100644 --- a/docker-compose.override.example.yml +++ b/docker-compose.override.example.yml @@ -3,24 +3,23 @@ services: backend: - environment: - OPENPROJECT_CLI_PROXY: "http://localhost:${FE_PORT:-4200}" - OPENPROJECT_HOST__NAME: "${HOST:-localhost}:${PORT:-3000}" + # use these ports to be able to access the stack under http://localhost:3000 ports: - "${PORT:-3000}:3000" frontend: + # use these ports to be able to access the stack under http://localhost:3000 ports: - "${FE_PORT:-4200}:4200" - db: - ports: - - '5432:5432' + # db: + # ports: + # - '5432:5432' - db-test: - ports: - - '5433:5432' + # db-test: + # ports: + # - '5433:5432' - chrome: - ports: - - '5900:5900' + # chrome: + # ports: + # - '5900:5900'