-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
46 lines (46 loc) · 1018 Bytes
/
docker-compose.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
services:
argus:
image: argus
build: ./app
container_name: argus
ports:
- ${ARGUS_PORT}:5000
volumes:
- ${ARGUS_PROJECTS}:/app/static/projects:rw
links:
- nodeodm
- detection
- webodm
- stella_vslam
depends_on:
- detection
- nodeodm
- webodm
- stella_vslam
environment:
- ARGUS_WEBODM_PORT
restart: unless-stopped
detection:
image: argus_detection
build: ./detection
container_name: argus_detection
ports:
- ${ARGUS_DETECTION_PORT}:5001
volumes:
- ${ARGUS_PROJECTS}:/detection/static/projects:rw
environment:
- ARGUS_GPU_NVIDIA
- ARGUS_GPU_INTEL
- ARGUS_GPU_AMD
restart: unless-stopped
stella_vslam:
image: stella_vslam_dense_argus
build: ./stella_vslam_dense_argus
container_name: argus_vslam
expose:
- 7000
volumes:
- ${ARGUS_PROJECTS}:/stella_vslam/static/projects:rw
restart: unless-stopped
volumes:
projects: