-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
40 lines (40 loc) · 1.05 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
services:
presenter:
image: risclidse/dl-workshop
# image: dl-workshop
mem_limit: 128G # TODO
shm_size: 128G # TODO
command: >
bash -c "source /repo/bash/create_presenter_dirs.sh &&
source /repo/bash/jupyter_server_presenter.sh &&
tail -f /dev/null"
ports:
- "8887:8887"
volumes:
- /mnt/workshop:/host
- ./:/repo
participant:
image: risclidse/dl-workshop
# image: dl-workshop
mem_limit: 128G # TODO
shm_size: 128G # TODO
command: >
bash -c "source /repo/bash/create_participant_dirs.sh &&
source /repo/bash/jupyter_server_participant.sh &&
tail -f /dev/null"
ports:
- "8888:8888"
volumes:
- /mnt/workshop:/host
# - ./:/repo
# participant-vscode:
# image: risclidse/dl-workshop
# # image: dl-workshop
# mem_limit: 16G # TODO
# shm_size: 16G # TODO
# command: >
# bash -c "cd /repo &&
# tail -f /dev/null"
# volumes:
# - /mnt/workshop:/host
# # - ./:/repo