-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
47 lines (41 loc) · 1.35 KB
/
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
services:
oteapi:
image: gitlab.sintef.no:5050/semanticmatter/oteapi/oteapi:latest
ports:
- 8080:8080
depends_on:
- redis
environment:
OTEAPI_REDIS_TYPE: redis
OTEAPI_REDIS_HOST: redis
OTEAPI_REDIS_PORT: 6379
OTEAPI_PREFIX: "${OTEAPI_PREFIX:-/api/v1}"
OTEAPI_PLUGIN_PACKAGES: '-v git+https://github.com/SINTEF/oteapi-dlite-Mod'
## Uncomment the following line (and uncomment the OTEAPI_PLUGIN_PACKAGES line above) to
# run the OceanLab demos.
# OTEAPI_PLUGIN_PACKAGES: '-v git+https://github.com/SINTEF/oteapi-dlite-Mod|-v git+https://github.com/SemanticMatter/oteapi-iliad'
## Set the GIT_AUTH_TOKEN env var locally, with access to GitHub's SemanticMatter/oteapi-iliad
GIT_AUTH_TOKEN:
volumes:
- "./entities:/entities"
- "./output:/output"
## The following lines can be uncommented to use local versions of the plugins
# - "${HOME}/venv/iliad/oteapi-dlite-Mod:/oteapi-dlite"
# - "${HOME}/venv/iliad/oteapi-iliad:/oteapi-iliad"
stop_grace_period: 1s
redis:
image: redis:latest
volumes:
- redis_data:/data
fuseki:
image: secoresearch/fuseki
container_name: fuseki
ports:
- "3030:3030"
environment:
ADMIN_PASSWORD: admin
volumes:
- fuseki_data:/fuseki
volumes:
fuseki_data:
redis_data: