-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
51 lines (48 loc) · 1019 Bytes
/
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
version: "3.7"
services:
pysat:
image: pysat
ports:
- "8880:8888"
build:
context: .
dockerfile: pysat.Dockerfile
pysat-kamodo:
image: pysat_kamodo
ports:
- "8881:8888"
build:
context: .
dockerfile: dockerfiles/pysatKamodo.Dockerfile
volumes:
- type: bind
source: ${PWD}
target: /pysatKamodo
pysat-madrigal:
image: pysat_madrigal
ports:
- "8882:8888"
build:
context: .
dockerfile: dockerfiles/pysatMadrigal.Dockerfile
volumes:
- type: bind
source: ${PWD}
target: /pysatKamodo
- type: bind
source: ${HOME}/.pysatData
target: /pysatData
pysat-nasa:
image: pysat_nasa
build:
context: .
dockerfile: dockerfiles/pysatNASA.Dockerfile
ports:
- "8883:8888"
volumes:
- type: bind
source: ${PWD}
target: /pysatKamodo
- type: bind
source: ${HOME}/.pysatData
target: /pysatData