-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-geocoding.yml
60 lines (55 loc) · 1.49 KB
/
docker-compose-geocoding.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
version: '3.7'
services:
mls-geocoding-poi:
image: wrkfmdit/geocoding-poi:${MLS_GEOCODING_POI_TAG:-latest}
tmpfs:
- /tmp
volumes:
- type: bind
source: ${MLS_GEOCODING_POI_CONFIG:-./config/geocoding-poi}
target: /config
read_only: true
- type: bind
source: ${MLS_LOG:-./log}
target: /log
mls-geocoding-vienna:
image: wrkfmdit/geocoding-vienna:${MLS_GEOCODING_VIENNA_TAG:-latest}
tmpfs:
- /tmp
volumes:
- type: bind
source: ${MLS_GEOCODING_VIENNA_CONFIG:-./config/geocoding-vienna}
target: /config
read_only: true
- type: bind
source: ${MLS_LOG:-./log}
target: /log
mls-geocoding-gmaps:
image: wrkfmdit/geocoding-gmaps:${MLS_GEOCODING_GMAPS_TAG:-latest}
tmpfs:
- /tmp
volumes:
- type: bind
source: ${MLS_GEOCODING_GMAPS_CONFIG:-./config/geocoding-gmaps}
target: /config
read_only: true
- type: bind
source: ${MLS_LOG:-./log}
target: /log
mls-geocoding-intersection:
image: wrkfmdit/geocoding-gmaps:${MLS_GEOCODING_INTERSECTION_TAG:-latest}
environment:
SPRING_PROFILES_ACTIVE: intersection
tmpfs:
- /tmp
volumes:
- type: bind
source: ${MLS_GEOCODING_INTERSECTION_CONFIG:-./config/geocoding-gmaps}
target: /config
read_only: true
- type: bind
source: ${MLS_LOG:-./log}
target: /log
networks:
default:
name: mls-network