-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
68 lines (68 loc) · 1.35 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
services:
base:
image: "databaseline/zoose-base"
build:
context: base
dockerfile: Dockerfile
ports:
- "8888:8888"
base-gitpod:
image: "databaseline/zoose-base-gitpod"
build:
context: gitpod
dockerfile: Dockerfile
depends_on:
- base
neo4j:
image: "databaseline/zoose-neo4j"
build:
context: neo4j
dockerfile: Dockerfile
depends_on:
- base
ports:
- "7473:7373"
- "7474:7474"
- "7687:7686"
pytorch:
image: "databaseline/zoose-pytorch"
build:
context: pytorch
dockerfile: Dockerfile
depends_on:
- base
pytorch-gitpod:
image: "databaseline/zoose-pytorch-gitpod"
build:
context: gitpod
dockerfile: Dockerfile
depends_on:
- base
quantum:
image: "databaseline/zoose-quantum"
build:
context: quantum
dockerfile: Dockerfile
depends_on:
- base
quantum-gitpod:
image: "databaseline/zoose-quantum-gitpod"
build:
context: gitpod
dockerfile: Dockerfile
depends_on:
- base
geo:
image: "databaseline/zoose-geo"
build:
context: geo
dockerfile: Dockerfile
depends_on:
- base
geo-gitpod:
image: "databaseline/zoose-geo-gitpod"
build:
context: gitpod
dockerfile: Dockerfile
depends_on:
- base