-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 1003 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (38 loc) · 1003 Bytes
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
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.2
ports:
- '9200:9200'
- '9300:9300'
environment:
- cluster.name=docker-cluster-nave
- bootstrap.memory_lock=true
- 'ES_JAVA_OPTS=-Xms512m -Xmx512m'
- xpack.security.enabled=false
- discovery.type=single-node
ulimits:
memlock:
soft: -1
hard: -1
networks:
- nave_network
fuseki:
image: stain/jena-fuseki:latest
ports:
- '3030:3030'
environment:
- ADMIN_PASSWORD=pw123
networks:
- nave_network
postgresql:
image: mdillon/postgis:9.6
restart: always
ports:
- '5433:5432'
environment:
POSTGRES_PASSWORD: pw123
networks:
- nave_network
networks:
nave_network:
driver: bridge