-
Notifications
You must be signed in to change notification settings - Fork 25
/
docker-compose.yaml
105 lines (100 loc) · 2.27 KB
/
docker-compose.yaml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
version: "3.7"
services:
kamodo: # core kamodo only
image: ensemble/kamodo
ports:
- "8888:8888"
command:
- jupyter
- notebook
- /kamodo
- --port=8888
- --no-browser
- --ip=0.0.0.0
- --allow-root
kamodo-ccmc: # ccmc readers
image: ccmc/kamodo_ccmc
build:
context: .
dockerfile: dockerfiles/kamodo_ccmc_readers.Dockerfile
volumes:
- type: bind
source: ${PWD}
target: /kamodo_ccmc
ports:
- "8889:8888"
sat: # ccmc readers with hapi dependencies
image: ccmc/sat
ports:
- "8881:8888"
build:
context: .
dockerfile: dockerfiles/satellite_extractions.Dockerfile
command:
- jupyter
- notebook
- ./docs/notebooks/CCMC_Satellite-Extractions.ipynb
- --port=8888
- --no-browser
- --ip=0.0.0.0
- --allow-root
volumes:
- type: bind
source: ${PWD}
target: /kamodo_ccmc
working_dir: /kamodo_ccmc
spacepy: # spacepy dependent readers
image: ccmc/spacepy
ports:
- "8882:8888"
build:
context: .
dockerfile: dockerfiles/spacepy.Dockerfile
command:
- jupyter
- notebook
- ./docs/notebooks
- --port=8888
- --no-browser
- --ip=0.0.0.0
- --allow-root
volumes:
- type: bind
source: ${PWD}
target: /kamodo_ccmc
working_dir: /kamodo_ccmc
flythrough:
image: ccmc/spacepy
ports:
- "8883:8888"
build:
context: .
dockerfile: dockerfiles/spacepy.Dockerfile
command:
- jupyter
- notebook
- ./notebooks
- --port=8888
- --no-browser
- --ip=0.0.0.0
- --allow-root
volumes:
- type: bind
source: ${PWD}
target: /kamodo_ccmc
working_dir: /kamodo_ccmc
kamodo-dev:
image: kamodo-wrap
command: ["sh", "-c", "~/miniconda3/envs/venv/bin/python3 -m jupyter notebook --port=8888 --no-browser --ip=0.0.0.0 --allow-root"]
volumes:
- ./kamodo-wrapper:/kamodo-wrapper
ports:
- 8888:8888
kamodo-wrap:
image: kamodo-wrap
build:
context: .
dockerfile: ./dockerfiles/kamodo-wrap.Dockerfile
args:
CUSTOM_LIB_DIR: /usr/local/lib
working_dir: /kamodo-wrapper