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
17 lines
327 B
YAML
17 lines
327 B
YAML
services:
|
|
map-frontend:
|
|
image: nginx:alpine
|
|
container_name: map-frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8087:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
- ./html:/usr/share/nginx/html:ro
|
|
networks:
|
|
- npm-network
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true
|