-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
53 lines (53 loc) · 1.46 KB
/
docker-compose.dev.yml
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:
camerapi:
build:
context: ./CamerAPI
dockerfile: Dockerfile.dev
container_name: camerapi
restart: unless-stopped
env_file: ./CamerAPI/.env
ports:
- "8080:8080"
volumes:
- "./CamerAPI:/camerapi"
- /camerapi/node_modules
camerai:
build:
context: .
dockerfile: Dockerfile.dev
container_name: camerai
restart: unless-stopped
env_file:
- .env
environment:
- PYTHONPATH=/camerai/src
ports:
- "50051:50051"
volumes:
- "./src:/camerai/src"
- "./libs:/camerai/libs"
- "./ai:/camerai/ai"
- "./camerai.log:/camerai/camerai.log"
videos_processor:
build:
context: ./videos_processor
dockerfile: Dockerfile
container_name: camerai_videos_processor
restart: unless-stopped
env_file:
- ./videos_processor/.env
volumes:
- "./videos_processor:/videos_processor"
camerapp:
build:
context: ./CamerAPP/camerapp
dockerfile: Dockerfile.dev
container_name: camerapp
restart: unless-stopped
env_file:
- ./CamerAPP/camerapp/.env
ports:
- "3000:3000"
volumes:
- "./CamerAPP/camerapp/:/camerapp/"
- /camerapp/node_modules