From 1447f64b42f6c6509091f69ddcb6725f5d0848e3 Mon Sep 17 00:00:00 2001 From: Mohan Ki Date: Mon, 27 Jul 2026 14:11:55 +0530 Subject: [PATCH] Remove host port bindings to fix Coolify deployment allocation errors --- docker-compose.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 040519b..d0e658f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -5,8 +5,6 @@ services: build: context: ./client dockerfile: Dockerfile - ports: - - "4000:4000" environment: - PORT=4000 depends_on: @@ -16,8 +14,6 @@ services: build: context: ./api dockerfile: Dockerfile - ports: - - "4001:4001" environment: - PORT=4001 - PGHOST=postgres @@ -37,15 +33,11 @@ services: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres - POSTGRES_DB=ckqr - ports: - - "5432:5432" volumes: - postgres_data:/var/lib/postgresql/data redis: image: redis:7-alpine - ports: - - "6379:6379" volumes: - redis_data:/data