ef1d136a3e
- map-frontend: nginx serves MapLibre GL static app, proxies /tiles/ to pmtiles internally - pmtiles: remove host port binding (internal to npm-network only), update public-url - 5 themes: light, dark, grayscale, white, black
15 lines
351 B
YAML
15 lines
351 B
YAML
services:
|
|
pmtiles:
|
|
image: protomaps/go-pmtiles:latest
|
|
container_name: pmtiles
|
|
restart: unless-stopped
|
|
command: serve /data --port=8080 --cors=* --public-url=https://maps.kolpacksoftware.com/tiles/
|
|
volumes:
|
|
- /mnt/nas_library/pmtiles/data:/data
|
|
networks:
|
|
- npm-network
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true
|