-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.compose.yaml
53 lines (49 loc) · 864 Bytes
/
dev.compose.yaml
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
services:
ai-server:
build:
context: ./ai_server
dockerfile: dev.Dockerfile
ports:
- 5000:5000
volumes:
- ./ai_server:/app
env_file:
- ./ai_server/.env
networks:
- internal
api-server:
build:
context: ./server
dockerfile: dev.Dockerfile
ports:
- 8090:8090
volumes:
- ./server:/source
networks:
- internal
client:
build:
context: ./website
dockerfile: dev.Dockerfile
environment:
- CHOKIDAR_USEPOLLING=true
ports:
- 5173:5173
volumes:
- ./website/src:/usr/src/app/src
networks:
- internal
proxy:
build:
context: ./proxy
ports:
- 81:81
restart: always
networks:
- internal
depends_on:
- ai-server
- api-server
- client
networks:
internal: