Skip to content

Commit 229695b

Browse files
committed
crone: 기본 docker-compose 설정 변경
1 parent 2048da9 commit 229695b

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.env.example

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ DB_PASSWORD=YOUR_DB_PASSWORD
1111
REDIS_CONNECTION_STRING=host.docker.internal:6380
1212

1313
# External Services
14-
LLM_BASE_URL=http://host.docker.internal:7908
15-
MEMORY_BASE_URL=http://host.docker.internal:7912
14+
LLM_BASE_URL=http://host.docker.internal:7930
15+
MEMORY_BASE_URL=http://host.docker.internal:7940
16+
STT_BASE_URL=http://host.docker.internal:7950
1617
TTS_BASE_URL=https://supertoneapi.com
1718
TTS_API_KEY=YOUR_TTS_API_KEY
1819

docker-compose.db.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3.8'
1+
name: projectvg-database
22

33
networks:
44
projectvg-external-db:

docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11

2+
name: projectvg-api-server
3+
24
networks:
35
projectvg-network:
46
driver: bridge
5-
external-db-network:
6-
external: true
7-
name: projectvg-external-db
87

98
services:
109
projectvg.api:
@@ -42,4 +41,6 @@ services:
4241
networks:
4342
- projectvg-network
4443
restart: unless-stopped
44+
extra_hosts:
45+
- "host.docker.internal:host-gateway"
4546

0 commit comments

Comments
 (0)