File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -161,4 +161,30 @@ services:
161
161
echo Sleep for a while!;
162
162
sleep 100;
163
163
echo Starting tiles server!;
164
- ./start.sh"
164
+ ./start.sh"
165
+ # =========================================================================
166
+ # NOMINATIM section
167
+ # =========================================================================
168
+ nominatim-db :
169
+ image : nominatim-db:v1
170
+ build :
171
+ context : ./images/nominatim
172
+ dockerfile : Dockerfile
173
+ ports :
174
+ - ' 6432:5432'
175
+ volumes :
176
+ - ./nominatim-pgdata:/var/lib/postgresql/data
177
+ env_file :
178
+ - ./.env-nominatim
179
+ command : >
180
+ /bin/bash -c "sh /app/start.sh"
181
+ nominatim-api :
182
+ image : nominatim-api:v1
183
+ build :
184
+ context : ./images/nominatim
185
+ dockerfile : Dockerfile
186
+ ports :
187
+ - ' 7070:8080'
188
+ env_file :
189
+ - ./.env-nominatim
190
+ entrypoint : sh /app/startapache.sh
You can’t perform that action at this time.
0 commit comments