-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
59 lines (54 loc) · 1.24 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
version: "2"
services:
dils_2018_tutorial:
image: asakor/dils_2018_tutorial_image:latest
hostname: dils_2018_tutorial
container_name: dils_2018_tutorial
domainname: dils_2018
volumes:
- ./data:/tutorial/data
depends_on:
- dils_2018_kg
networks:
- dils_2018
semantic-enrichment:
image: asakor/semantic-enrichment:latest
hostname: semantic-enrichment
container_name: dils_2018_semantic_enrichment
domainname: dils_2018
volumes:
- ./data:/app/data
- ./rdf/output:/data/output
- ./mappings:/app/mappings
env_file:
- ./envfile.env
depends_on:
- dils_2018_kg
networks:
- dils_2018
dils_2018_kg:
image: asakor/dils_2018_kg:latest
hostname: dils_2018_kg
container_name: dils_2018_kg
domainname: dils_2018
volumes:
- ./rdf:/data
ports:
- "11381:8890"
- "1112:1111"
networks:
- dils_2018
dils_2018_jupyter:
image: asakor/dils_2018_jupyter:latest
hostname: dils_2018_jupyter
container_name: dils_2018_jupyter
domainname: dils_2018
environment:
- PASSWORD=dils2018
ports:
- "8888:8888"
networks:
- dils_2018
networks:
dils_2018:
external: true