-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
127 lines (102 loc) · 4.23 KB
/
.env
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#
# General
# =======
#
NAME=journey-planner
BUILD_NAME=build
# Generated with https://boundingbox.klokantech.com/
# by surrounding the whole country and selecting
# "Copy & Paste CSV" -> 18.77,59.32,32.0,70.27
MIN_LON=18.77
MAX_LON=32.0
MIN_LAT=59.32
MAX_LAT=70.27
# This value is smaller than for the VGN region
# as Finland is larger in size and we want to allow users
# to zoom further out of the map.
# https://www.openstreetmap.org/#map=5/63.879/17.183
MIN_ZOOM=5
TIMEZONE=Europe/Berlin
# License (CC 4.0 BY) and additional information:
# https://developer.matka.fi/pages/en/home.php
GTFS_URL=https://traffic.navici.com/tiedostot/gtfs.zip
# Alternative download URL.
#GTFS_URL=https://koontikartta.navici.com/tiedostot/gtfs.zip
GTFS_CREDITS='[{"license":"CC 4.0 BY","text":"Public transit timetable data by Fintraffic. https://www.fintraffic.fi"}]'
GTFS_MODIFICATION_PARAM='--bikes-allowed True'
GTFS_FILTER=
OSM_PBF_URL=https://download.geofabrik.de/europe/finland-latest.osm.pbf
DOCKER_REGISTRY_URL=docker.io/biketripplanner/
DOCKER_IMAGE_TAG=finnland
#
# Healthcheck
# ===========
#
HEALTHCHECK_OPENTRIPPLANNER='Helsingin seudun liikenne'
# The GTFS dataset includes a train stop named "Helsinki".
HEALTHCHECK_API_REQUEST=localhost:4000/v1/search?text=Helsinki&lang=en&layers=stop,station
HEALTHCHECK_API_RESPONSE='"name":"Helsinki"'
# https://www.openstreetmap.org/search?whereami=1&query=60.17275%2C24.94447#map=18/60.17275/24.94447
# Itäinen Teatterikuja 5, Helsinki, Finland
#
# printf %s 'Itäinen 5, Helsinki, Finland' | jq -sRr @uri
HEALTHCHECK_LIBPOSTAL_REQUEST=localhost:4400/parse?address=It%C3%A4inen%205%2C%20Helsinki%2C%20Finland
HEALTHCHECK_LIBPOSTAL_RESPONSE='"label":"city","value":"helsinki"'
HEALTHCHECK_PLACEHOLDER_REQUEST=localhost:4100/parser/search?text=helsinki
HEALTHCHECK_PLACEHOLDER_RESPONSE='"name":"Helsinki"'
# https://www.openstreetmap.org/way/17123583#map=18/60.20561/24.96155
# Kumpula Sportcenter, Väinö Auerin katu 11
HEALTHCHECK_INTERPOLATION_REQUEST=localhost:4300/search/geojson?lat=60.20561&lon=24.96155&street=V%C3%A4in%C3%B6%20Auerin%20katu&number=11
HEALTHCHECK_INTERPOLATION_RESPONSE='"type":"exact"'
HEALTHCHECK_PIP_REQUEST=localhost:4200/24.94447/60.17275
HEALTHCHECK_PIP_RESPONSE=Helsinki
#
# Tileserver GL
# =============
#
MAP_STYLE_URL=https://github.com/langbein-daniel/cyclo-bright-gl-style.git
#
# OpenTripPlanner
# ===============
#
OTP_OSM_TAGS='nwar/amenity=bicycle_parking nwar/highway nwar/public_transport=platform nwar/railway=platform nwar/park_ride=yes nwar/type=restriction nwar/type=route'
JAVA_BUILD_OPTS=-Xmx10G
JAVA_OPTS=-Xmx20G
#
# Pelias
# ======
#
COUNTRY_CODE=FI
WOF_IDS=["85633143"]
PELIAS_BUILD_DIR=./pelias
#
# Digitransit-UI
# ==============
#
OTP_TIMEOUT=30000
#
# Docker image versions
# =====================
#
DOCKERFILE_TILEMAKER=github.com/systemed/tilemaker
DOCKERFILE_GTFS_MODIFICATIONS=github.com/langbein-daniel/gtfs-modifications#main
DOCKERFILE_DEM_DATA=github.com/langbein-daniel/dem-download#main
DOCKERFILE_DIGITRANSIT_UI=github.com/langbein-daniel/digitransit-ui#v3-btp
DOCKERFILE_PELIAS_GTFS=https://github.com/HSLdevcom/pelias-gtfs
IMAGE_ALPINE=registry.ipv6.docker.com/library/alpine
IMAGE_DEBIAN=registry.ipv6.docker.com/library/debian:stable-slim
IMAGE_GO=registry.ipv6.docker.com/library/golang
IMAGE_R_BASE=registry.ipv6.docker.com/library/r-base
IMAGE_TILESERVER_GL=registry.ipv6.docker.com/maptiler/tileserver-gl
IMAGE_OPENTRIPPLANNER=registry.ipv6.docker.com/opentripplanner/opentripplanner
IMAGE_PELIAS_BASE=registry.ipv6.docker.com/pelias/baseimage:master
IMAGE_PELIAS_OPENSTREETMAP=registry.ipv6.docker.com/pelias/openstreetmap:master
IMAGE_PELIAS_POLYLINES=registry.ipv6.docker.com/pelias/polylines:master
IMAGE_PELIAS_WHOSONFIRST=registry.ipv6.docker.com/pelias/whosonfirst:master
IMAGE_PELIAS_SCHEMA=registry.ipv6.docker.com/pelias/schema:master
IMAGE_PELIAS_LIBPOSTAL=registry.ipv6.docker.com/pelias/libpostal-service
IMAGE_PELIAS_API=registry.ipv6.docker.com/pelias/api:master
IMAGE_PELIAS_PLACEHOLDER=registry.ipv6.docker.com/pelias/placeholder:master
IMAGE_PELIAS_INTERPOLATION=registry.ipv6.docker.com/pelias/interpolation:master
IMAGE_PELIAS_PIP=registry.ipv6.docker.com/pelias/pip-service:master
IMAGE_PELIAS_ELASTICSEARCH=registry.ipv6.docker.com/pelias/elasticsearch:7.16.1