Skip to content

Commit 8307ede

Browse files
committed
fix: deduplicate dev ports (3002 server, 3003 dashboard, 3004 slack)
1 parent 44deebc commit 8307ede

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ services:
103103
# Channel routing
104104
CHANNEL_ROUTES: ${CHANNEL_ROUTES:-[]}
105105
ports:
106-
- "${SERVER_PORT:-3000}:3000"
106+
- "${SERVER_PORT:-3002}:3000"
107107
networks:
108108
- agentgate-internal
109109
depends_on:
@@ -128,7 +128,7 @@ services:
128128
dockerfile: packages/dashboard/Dockerfile
129129
container_name: agentgate-dashboard
130130
ports:
131-
- "${DASHBOARD_PORT:-8080}:80"
131+
- "${DASHBOARD_PORT:-3003}:80"
132132
networks:
133133
- agentgate-internal
134134
depends_on:
@@ -160,7 +160,7 @@ services:
160160
SLACK_APP_TOKEN: ${SLACK_APP_TOKEN:-}
161161
PORT: 3001
162162
ports:
163-
- "${SLACK_BOT_PORT:-3001}:3001"
163+
- "${SLACK_BOT_PORT:-3004}:3001"
164164
networks:
165165
- agentgate-internal
166166
depends_on:

0 commit comments

Comments
 (0)