16 lines
269 B
YAML
16 lines
269 B
YAML
|
|
# Tile Server
|
||
|
|
#
|
||
|
|
# Access via "http://localhost:8091"
|
||
|
|
version: '3'
|
||
|
|
services:
|
||
|
|
OSM-tile-Server:
|
||
|
|
build: .
|
||
|
|
ports:
|
||
|
|
- 8091:80
|
||
|
|
volumes:
|
||
|
|
- ./OSM-maps-data:/var/lib/postgresql/12/main
|
||
|
|
command: "run"
|
||
|
|
restart: always
|
||
|
|
cpus: 1.4
|
||
|
|
cpuset: '1'
|