-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
58 lines (55 loc) · 1.09 KB
/
docker-compose.dev.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
services:
identifier:
restart: "no"
ports:
- "80:80"
dispatcher:
restart: "no"
frontend:
restart: "no"
resource:
restart: "no"
cache:
restart: "no"
database:
restart: "no"
triplestore:
environment:
ENABLE_CORS: "true"
ports:
- 8890:8890
restart: "no"
delta-notifier:
restart: "no"
migrations:
restart: "no"
volumes:
- ./config/development/migrations:/data/migrations/dev
login:
restart: "no"
registration:
restart: "no"
entity-mapping:
environment:
MODE: "development"
LOG_LEVEL: "debug"
ports:
- "8888:80"
restart: "no"
yasgui:
image: erikap/yasgui
ports:
- "8891:80"
environment:
ENABLE_ENDPOINT_SELECTOR: "true"
DEFAULT_SPARQL_ENDPOINT: "http://localhost:8890/sparql"
restart: "no"
# spex:
# # Needs some more build instructions
# image: spex
# ports:
# - "8892:80"
# environment:
# ENABLE_ENDPOINT_SELECTOR: "true"
# DEFAULT_SPARQL_ENDPOINT: "http://localhost:8890/sparql"
# restart: "no"