Skip to content

Commit 98add99

Browse files
committed
fix(docker): fix runtime vars for docker deployments
1 parent fb5d5d9 commit 98add99

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docker-compose.local.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- GITHUB_CLIENT_SECRET=${GITHUB_CLIENT_SECRET:-placeholder}
2323
- RESEND_API_KEY=${RESEND_API_KEY:-placeholder}
2424
- OLLAMA_URL=${OLLAMA_URL:-http://localhost:11434}
25-
- SOCKET_SERVER_URL=${SOCKET_SERVER_URL:-http://localhost:3002}
25+
- NEXT_PUBLIC_SOCKET_URL=${NEXT_PUBLIC_SOCKET_URL:-http://localhost:3002}
2626
depends_on:
2727
db:
2828
condition: service_healthy

docker-compose.prod.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ services:
2222
- RESEND_API_KEY=${RESEND_API_KEY:-placeholder}
2323
- OLLAMA_URL=${OLLAMA_URL:-http://localhost:11434}
2424
- SOCKET_SERVER_URL=${SOCKET_SERVER_URL:-http://localhost:3002}
25+
- NEXT_PUBLIC_SOCKET_URL=${NEXT_PUBLIC_SOCKET_URL:-http://localhost:3002}
2526
depends_on:
2627
db:
2728
condition: service_healthy

0 commit comments

Comments
 (0)