Skip to content

Commit 8ea968e

Browse files
committed
refactor: remove web service from docker compose
1 parent 4f1a12c commit 8ea968e

2 files changed

Lines changed: 2 additions & 13 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/node_modules
22
/package-lock.json
33
node_modules
4-
/apps/web/package-lock.json
4+
apps/llm/__pycache__

docker-compose.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,11 @@ services:
55
context: ./apps/llm
66
container_name: llm
77
ports:
8-
- "5000:5000"
8+
- "5001:5000"
99
networks:
1010
- app-network
1111
tty: True
1212

13-
web:
14-
build:
15-
context: ./apps/web
16-
container_name: web
17-
ports:
18-
- "3000:3000"
19-
depends_on:
20-
- llm
21-
networks:
22-
- app-network
23-
2413
networks:
2514
app-network:
2615
driver: bridge

0 commit comments

Comments
 (0)