-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (48 loc) · 988 Bytes
/
docker-compose.yml
File metadata and controls
53 lines (48 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: '3.8'
services:
Dashboard:
image: prashrex/dashboard
container_name: dashboard-react
restart: always
build:
context: ./dashboard
dockerfile: Dockerfile
ports:
- "8080:80"
networks:
- llm-webapp-network
CodeGen:
image: prashrex/codegen
container_name: codegen
restart: always
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
tty: true
stdin_open: true
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
networks:
- llm-webapp-network
watchtower:
image: containrrr/watchtower
command: --interval 15
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_CLEANUP=true
networks:
- llm-webapp-network
redis:
image: redis:3.0
restart: always
ports:
- "6379:6379"
networks:
- llm-webapp-network
networks:
llm-webapp-network:
driver: bridge