martin/demo/docker-compose.yml
Yuri Astrakhan 1507625e57
Fix demo (#841)
This fixes Demo https://martin.maplibre.org/ site (the new code is
already in production there). Main fixes:

* uses HTTPS again, just like the previous site
* uses nginx
* fixes all the relative paths, maplibre, minor other things
2023-08-26 09:52:43 -04:00

40 lines
887 B
YAML

version: "3.8"
services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
restart: unless-stopped
depends_on:
- tiles
ports:
- "80:80"
- "443:443"
volumes:
- ./certs:/etc/ssl/certs
tiles:
image: ghcr.io/maplibre/martin
# For Arm64 - you have to build your own image from source https://github.com/maplibre/martin/issues/655#issuecomment-1540669505
restart: unless-stopped
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgres://postgres@db/db
depends_on:
- db
db:
build:
context: ./db
dockerfile: Dockerfile
restart: unless-stopped
environment:
- POSTGRES_DB=db
- POSTGRES_USER=postgres
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- ./db/db:/var/lib/postgresql/data
- ./db/initdb:/docker-entrypoint-initdb.d