-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (47 loc) · 1.05 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
# OPAL data
#
# This file is a combination of the docker-compose files in the sub-directories
# elasticsearch (using elasticsearch-initialization) and fuseki.
#
# Repository:
# https://github.com/projekt-opal/opaldata
#
# Configurations are described in the subfolders.
version: '3.2'
services:
### Elasticsearch
elasticsearch:
build: elasticsearch
ports:
- 9200:9200
environment:
- ES_JAVA_OPTS=${ELASTICSEARCH_JAVA_OPTS}
- discovery.type=single-node
- bootstrap.memory_lock=true
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata01:/usr/share/elasticsearch/data
elasticsearch-initialization:
build: elasticsearch-initialization
links:
- elasticsearch
depends_on:
- elasticsearch
### Fuseki
opal-fuseki:
environment:
- ADMIN_PASSWORD=${FUSEKI_ADMIN_PASSWORD}
- JVM_ARGS=${FUSEKI_JVM_ARGS}
ports:
- 3030:3030
build:
fuseki/
volumes:
- fuseki-data:/fuseki
### Overall volumes
volumes:
fuseki-data:
esdata01: