19 lines
No EOL
500 B
YAML
19 lines
No EOL
500 B
YAML
# Tile Server
|
|
#
|
|
# Access via "http://localhost:8091"
|
|
version: '3'
|
|
services:
|
|
OSM-tile-Server:
|
|
build: .
|
|
ports:
|
|
- 8091:80
|
|
environment:
|
|
DOWNLOAD_PBF: "https://download.geofabrik.de/europe/luxembourg-latest.osm.pbf"
|
|
DOWNLOAD_POLY: "https://download.geofabrik.de/europe/luxembourg.poly"
|
|
volumes:
|
|
- ./OSM-maps-data:/var/lib/postgresql/12/main
|
|
- ./OSM-maps-data/rendered:/var/lib/mod_tile
|
|
command: "import"
|
|
restart: always
|
|
cpus: 1.4
|
|
cpuset: '1' |