-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (51 loc) · 1.19 KB
/
docker-compose.yml
File metadata and controls
53 lines (51 loc) · 1.19 KB
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:
rcnn_iwp_inference_extractor:
build:
context: rcnn_iwp_inference_extractor
dockerfile: Dockerfile
networks:
- clowder2_pdg
restart: unless-stopped
environment:
# Set environment variables for MinIO
MINIO_ENDPOINT:
MINIO_ACCESS_KEY:
MINIO_SECRET_KEY:
MINIO_MOUNTED_PATH: /clowderfs
RABBITMQ_URI:
CLOWDER_VERSION: 2
NVIDIA_VISIBLE_DEVICES: all
privileged: true
devices:
- /dev/fuse:/dev/fuse
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
runtime: nvidia
rcnn_iwp_finetuning_extractor:
build:
context: rcnn_iwp_finetuning_extractor
dockerfile: Dockerfile
networks:
- clowder2_pdg
restart: unless-stopped
environment:
# Set environment variables for MinIO
MINIO_ENDPOINT:
MINIO_ACCESS_KEY:
MINIO_SECRET_KEY:
MINIO_MOUNTED_PATH: /clowderfs
RABBITMQ_URI:
CLOWDER_VERSION: 2
NVIDIA_VISIBLE_DEVICES: all
privileged: true
devices:
- /dev/fuse:/dev/fuse
cap_add:
- SYS_ADMIN
security_opt:
- apparmor:unconfined
runtime: nvidia
networks:
clowder2_pdg: