forked from cajal/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (54 loc) · 1.23 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
version: '2.0'
services:
notebook:
image: ninai/stimulus-pipeline:latest
ports:
- "8888:8888"
volumes:
- /mnt/:/mnt/
- /home/pipeline_data/:/tmp/
- .:/data/pipeline/
env_file: .env
environment:
- DISPLAY=$DISPLAY
entrypoint:
- jupyter
- lab
- --ip=0.0.0.0
- --allow-root
- --NotebookApp.token=''
- --no-browser
minion:
image: ninai/stimulus-pipeline:latest
volumes:
- /mnt/:/mnt/
- /home/pipeline_data:/tmp/
- .:/data/pipeline
env_file: .env
entrypoint:
- python3
- /data/pipeline/python/scripts/populate-minion.py
minion-gpu:
image: ninai/pipeline:tf-gpu
runtime: nvidia
volumes:
- /mnt/:/mnt/
- /home/pipeline_data:/tmp/
- .:/data/pipeline
env_file: .env
entrypoint:
- python3
- /data/pipeline/python/scripts/populate-minion_gpu.py
bash:
image: ninai/stimulus-pipeline:latest
volumes:
- /mnt/:/mnt/
- /home/pipeline_data/:/tmp/
- .:/data/pipeline
- /etc/localtime:/etc/localtime:ro
- /tmp/.X11-unix:/tmp/.X11-unix
env_file: .env
environment:
- DISPLAY=$DISPLAY
entrypoint:
- /bin/bash