-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
69 lines (68 loc) · 1.68 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
version: '3.5'
services:
input-sdbm:
build:
context: .
dockerfile: input/Dockerfile
ports:
- 3051:3030
restart: "unless-stopped"
volumes:
- ./data/sdbm:/staging
- mmm-sdbm:/fuseki-base/databases
restart: unless-stopped
input-bibale:
build:
context: .
dockerfile: input/Dockerfile
ports:
- 3052:3030
restart: "unless-stopped"
volumes:
- ./data/bibale:/staging
- mmm-bibale:/fuseki-base/databases
restart: unless-stopped
input-bodley:
build:
context: .
dockerfile: input/Dockerfile
ports:
- 3053:3030
restart: "unless-stopped"
volumes:
- ./data/bodley:/staging
- mmm-bodley:/fuseki-base/databases
restart: unless-stopped
transform:
build:
context: ./transform
depends_on:
- input-sdbm
- input-bibale
- input-bodley
environment:
- GEONAMES_KEY
- GEONAMES_KEY2
- GEONAMES_KEY3
- GEONAMES_KEY4
- GEONAMES_KEY5
- GEONAMES_KEY6
volumes:
- ./output:/output
- ./data/additional:/data
crm:
build:
context: .
dockerfile: crm/Dockerfile
ports:
- 3050:3030
restart: "unless-stopped"
volumes:
- mmm-crm:/fuseki-base/databases
- ./output:/output
restart: unless-stopped
volumes:
mmm-crm:
mmm-sdbm:
mmm-bibale:
mmm-bodley: