-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
65 lines (59 loc) · 1.24 KB
/
compose.yaml
File metadata and controls
65 lines (59 loc) · 1.24 KB
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
services:
ui:
build:
context: .
dockerfile: Dockerfile.hodrl
args:
HODRL_CLIENT: ui
command: hodrl-ui
container_name: hODRL-ui
restart: unless-stopped
ports:
- '8050:8050'
networks:
- hODRL
api:
build:
context: .
dockerfile: Dockerfile.hodrl
args:
HODRL_CLIENT: api
command: hodrl-api
container_name: hODRL-api
restart: unless-stopped
ports:
- '8000:8000'
networks:
- hODRL
cli:
build:
context: .
dockerfile: Dockerfile.hodrl
args:
HODRL_CLIENT: cli
entrypoint: hodrl-cli
container_name: hODRL-cli
profiles: ["manual"]
networks:
- hODRL
metadata-store:
image: stain/jena-fuseki
container_name: hODRL-metadata-store
restart: unless-stopped
ports:
- "3030:3030"
environment:
ADMIN_PASSWORD: admin
volumes:
- hodrl-data:/fuseki
- ./config/metadata-store/config.ttl:/fuseki/config.ttl
- ./config/metadata-store/vocabulary.ttl:/fuseki/vocabulary.ttl
- ./tests/data/ODRL-w3c-examples.ttl:/fuseki/data.ttl # temporary
networks:
- hODRL
networks:
hODRL:
name: hODRL
volumes:
hodrl-data:
name: hodrl-data