-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
85 lines (85 loc) · 2.09 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
version: '2'
volumes:
resin-data:
services:
# Connectivy looks after GSM modems and overall connection management
connectivity:
build: ./connectivity
privileged: true
restart: always
volumes:
- 'resin-data:/data'
expose:
- "22"
# Python 3 base Resin Jetson TX2 image
## resinbase:
## build: ./resinbase
## privileged: true
## restart: always
## volumes:
## - 'resin-data:/data'
#### # Ubuntu is a basic container without drivers, mainly used for development
#### ubuntu:
#### build: ./ubuntu
#### privileged: true
#### restart: always
#### depends_on:
#### - connectivity
#### # Cuda Base is a basic container with CUDA drivers
#### cudabase:
#### build: ./cudabase
#### privileged: true
#### restart: always
#### depends_on:
#### - connectivity
#### # Cuda Base + TensorRT + OpenCV4Tegra container
#### opencv4tegra:
#### build: ./opencv4tegra
#### privileged: true
#### restart: always
#### depends_on:
#### - connectivity
# Cuda Base + OpenCV4Tegra + TensorRT (same as opencv4tegra container)
tensorrt:
build: ./tensorrt
privileged: true
restart: always
depends_on:
- connectivity
# Cuda Base + OpenCV4Tegra + TensorRT + Chainer container
chainer:
build: ./chainer
privileged: true
restart: always
depends_on:
- connectivity
# Cuda Base + OpenCV4Tegra + TensorRT + NVIDIA caffe container
caffe:
build: ./caffe
privileged: true
restart: always
depends_on:
- connectivity
# Cuda Base + OpenCV4Tegra + TensorRT + TensorFlow container
tensorflow:
build: ./tensorflow
privileged: true
restart: always
depends_on:
- connectivity
# Cuda Base + OpenCV4Tegra + TensorRT + Inference container
inference:
build: ./inference
privileged: true
restart: always
depends_on:
- connectivity
# Cuda Base + OpenCV4Tegra + TensorRT + NVIDIA caffe + NVIDIA digits container
digits:
build: ./digits
privileged: true
restart: always
depends_on:
- connectivity
expose:
- "5001"