-
Notifications
You must be signed in to change notification settings - Fork 33
/
docker-compose.yml
61 lines (61 loc) · 1.48 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
57
58
59
60
61
services:
# website:
# image: israel-hiking
# build: .
# environment:
# - ASPNETCORE_ENVIRONMENT=Development
# ports:
# - "5000:5000"
# volumes:
# - ./IsraelHiking.Web/appsettings.json:/israelhiking/appsettings.json
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.8
container_name: elasticsearch
environment:
- node.name=elasticsearch
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms2g -Xmx2g"
volumes:
- esdata:/usr/share/elasticsearch/data:rw
ports:
- 9200:9200
- 9300:9300
restart: always
graphhopper:
image: israelhikingmap/graphhopper:8.0
container_name: graphhopper
volumes:
- ghdata:/data:rw
- type: bind
source: ./gh-config.yml
target: /data/gh-config.yml
ports:
- 8989:8989
entrypoint: ./graphhopper.sh -c /data/gh-config.yml
command: --host 0.0.0.0 -o /data/default-gh/
restart: always
gpsbabel:
image: israelhikingmap/gpsbabelwebapi
container_name: gpsbabel
ports:
- 11987:80
restart: always
elevation:
image: israelhikingmap/elevationwebapi
container_name: elevation
ports:
- 11211:80
restart: always
volumes:
- ./elevation-cache:/app/elevation-cache
imagecreator:
image: israelhikingmap/imagecreatorwebapi
container_name: imagecreator
ports:
- 11311:80
restart: always
volumes:
esdata:
driver: local
ghdata:
driver: local