-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
76 lines (70 loc) · 1.72 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
services:
gui:
image: bspsupsi/sleepyland:gui
build:
context: ./gui
container_name: gui_container
ports:
- "8887:8887"
depends_on:
- manager-api
volumes:
- ./input:/app/input
- ./output:/app/output
manager-api:
image: bspsupsi/sleepyland:manager-api
build:
context: ./manager-api
container_name: manager_container
ports:
- "8989:8989"
volumes:
- ./input:/app/input
- ./output:/app/output
notebook:
image: bspsupsi/sleepyland:notebook
build:
context: ./notebook
container_name: notebook_container
ports:
- "8888:8888"
volumes:
- ./my-notebook:/app/my-notebook
- ./input:/app/input
- ./output:/app/output
nsrr-download:
image: bspsupsi/sleepyland:nsrr-download
build:
context: ./nsrr-download
container_name: nsrr_download_container
ports:
- "8500:8500"
volumes:
- ./input:/app/input
- ./output:/app/output
usleepyland:
image: bspsupsi/sleepyland:usleepyland
build:
context: ./usleepyland
container_name: usleepyland_container
ports:
- "7777:7777"
environment:
- LD_PRELOAD=/opt/conda/envs/u-sleepyland-tfcuda/lib/libgomp.so.1:/opt/conda/envs/u-sleepyland-tfcuda/lib/python3.9/site-packages/sklearn/utils/../../scikit_learn.libs/libgomp-d22c30c5.so.1.0.0
volumes:
- ./input:/app/input
- ./output:/app/output
wild-to-fancy:
image: bspsupsi/sleepyland:wild-to-fancy
build:
context: wild-to-fancy
container_name: wild_to_fancy_container
ports:
- "6666:6666"
volumes:
- ./input:/app/input
- ./output:/app/output
volumes:
my-notebook:
input:
output: