From ba4b7ef0a4bb30b5627b587b212fcccc428c47ea Mon Sep 17 00:00:00 2001 From: Den Piligrim <89912505+vasiljevdenis@users.noreply.github.com> Date: Sat, 31 Jan 2026 21:18:01 +0300 Subject: [PATCH] fix port --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index c6df028..765281d 100644 --- a/install.sh +++ b/install.sh @@ -253,6 +253,8 @@ services: POSTGRES_USER: admin POSTGRES_PASSWORD: ${DB_PASS} POSTGRES_DB: 3dp_manager + ports: + - "127.0.0.1:${DB_EXTERNAL_PORT}:5432" volumes: - pg_data:/var/lib/postgresql/data healthcheck: @@ -277,6 +279,8 @@ services: DATABASE_NAME: 3dp_manager JWT_SECRET: ${JWT_SECRET} PORT: 3000 + ports: + - "3000:3000" # --- Frontend (Nginx + React) --- frontend: