Skip to content

Commit 8e70a61

Browse files
authored
fix(docker): added copilot-related keys to docker container definitions (#1382)
1 parent abae6b9 commit 8e70a61

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

docker-compose.local.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ services:
1515
- NEXT_PUBLIC_APP_URL=${NEXT_PUBLIC_APP_URL:-http://localhost:3000}
1616
- BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET:-your_auth_secret_here}
1717
- ENCRYPTION_KEY=${ENCRYPTION_KEY:-your_encryption_key_here}
18+
- COPILOT_API_KEY=${COPILOT_API_KEY}
19+
- SIM_AGENT_API_URL=${SIM_AGENT_API_URL}
1820
- OLLAMA_URL=${OLLAMA_URL:-http://localhost:11434}
1921
- NEXT_PUBLIC_SOCKET_URL=${NEXT_PUBLIC_SOCKET_URL:-http://localhost:3002}
2022
depends_on:

docker-compose.ollama.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ services:
1818
- NEXT_PUBLIC_APP_URL=${NEXT_PUBLIC_APP_URL:-http://localhost:3000}
1919
- BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET:-sim_auth_secret_$(openssl rand -hex 16)}
2020
- ENCRYPTION_KEY=${ENCRYPTION_KEY:-$(openssl rand -hex 32)}
21+
- COPILOT_API_KEY=${COPILOT_API_KEY}
22+
- SIM_AGENT_API_URL=${SIM_AGENT_API_URL}
2123
- OLLAMA_URL=http://ollama:11434
2224
- NEXT_PUBLIC_SOCKET_URL=${NEXT_PUBLIC_SOCKET_URL:-http://localhost:3002}
2325
depends_on:

docker-compose.prod.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ services:
1414
- NEXT_PUBLIC_APP_URL=${NEXT_PUBLIC_APP_URL:-http://localhost:3000}
1515
- BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET:-your_auth_secret_here}
1616
- ENCRYPTION_KEY=${ENCRYPTION_KEY:-your_encryption_key_here}
17+
- COPILOT_API_KEY=${COPILOT_API_KEY}
18+
- SIM_AGENT_API_URL=${SIM_AGENT_API_URL}
1719
- OLLAMA_URL=${OLLAMA_URL:-http://localhost:11434}
1820
- SOCKET_SERVER_URL=${SOCKET_SERVER_URL:-http://localhost:3002}
1921
- NEXT_PUBLIC_SOCKET_URL=${NEXT_PUBLIC_SOCKET_URL:-http://localhost:3002}

0 commit comments

Comments
 (0)