23 lines
590 B
YAML
23 lines
590 B
YAML
version: '3'
|
|
|
|
services:
|
|
map:
|
|
image: overv/openstreetmap-tile-server
|
|
volumes:
|
|
#- osm-data:/data/database/
|
|
- ./database:/data/database/
|
|
- ./tiles:/data/tiles/
|
|
- ./cyclosm/renderd.conf:/etc/renderd.conf
|
|
- ./run.sh:/run.sh # for dev
|
|
- ./pbf/luxembourg-latest.osm.pbf:/data/region.osm.pbf # change here your pbf
|
|
- ./pbf/luxembourg.poly:/data/region.poly # and your poly
|
|
- ./pbf/shp/:/data/shp/
|
|
- ./pbf/hillshade.tif:/data/hillshade.tif
|
|
ports:
|
|
- "8080:80"
|
|
command: "run"
|
|
|
|
# volumes:
|
|
# osm-data:
|
|
# external: true
|