forked from luxonis/modelconverter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
40 lines (34 loc) · 937 Bytes
/
docker-compose.yaml
File metadata and controls
40 lines (34 loc) · 937 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
x-common: &common
environment:
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
AWS_S3_ENDPOINT_URL: ${AWS_S3_ENDPOINT_URL}
GOOGLE_APPLICATION_CREDENTIALS: /run/secrets/gcp-credentials
TF_CPP_MIN_LOG_LEVEL: '3'
volumes:
- ${PWD}/shared_with_container:/app/shared_with_container
secrets:
- gcp-credentials
x-gpu: &gpu
<<: *common
runtime: nvidia
services:
hailo:
<<: *gpu
image: "luxonis/modelconverter-hailo:latest"
entrypoint: /app/entrypoint.sh
rvc2:
<<: *common
image: "luxonis/modelconverter-rvc2:latest"
entrypoint: /app/entrypoint.sh
rvc3:
<<: *common
image: "luxonis/modelconverter-rvc3:latest"
entrypoint: /app/entrypoint.sh
rvc4:
<<: *common
image: "luxonis/modelconverter-rvc4:latest"
entrypoint: /app/entrypoint.sh
secrets:
gcp-credentials:
file: ${GOOGLE_APPLICATION_CREDENTIALS}