fix: remove host ports from docker-compose for Coolify deployment

This commit is contained in:
Admin
2026-05-26 23:02:13 +05:00
parent 47b15787f3
commit 0846572a9c
+4 -4
View File
@@ -5,8 +5,8 @@ services:
build: ./backend build: ./backend
container_name: psychologist-backend container_name: psychologist-backend
restart: unless-stopped restart: unless-stopped
ports: expose:
- "3001:3001" - "3001"
env_file: env_file:
- .env - .env
networks: networks:
@@ -19,8 +19,8 @@ services:
- VITE_API_URL=/api - VITE_API_URL=/api
container_name: psychologist-frontend container_name: psychologist-frontend
restart: unless-stopped restart: unless-stopped
ports: expose:
- "80:80" - "80"
depends_on: depends_on:
- backend - backend
networks: networks: