mirror of
https://github.com/maplibre/martin.git
synced 2024-12-18 20:31:54 +03:00
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
version: "3"
|
|
|
|
services:
|
|
martin:
|
|
image: urbica/martin
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
- WATCH_MODE=true
|
|
- DATABASE_URL=postgres://postgres@db/db
|
|
- RUST_LOG=actix_web=info,martin=debug,tokio_postgres=debug
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgis/postgis:14-3.1-alpine
|
|
restart: unless-stopped
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_DB=db
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
|
volumes:
|
|
- ./tests/fixtures:/fixtures
|
|
- ./pg_data:/var/lib/postgresql/data
|
|
- ./tests/initdb-martin.sh:/docker-entrypoint-initdb.d/20_martin.sh
|
|
|
|
db-legacy:
|
|
image: postgis/postgis:9.6-2.5-alpine
|
|
restart: unless-stopped
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_DB=db
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
|
volumes:
|
|
- ./tests/fixtures:/fixtures
|
|
- ./pg_data:/var/lib/postgresql/data
|
|
- ./tests/initdb-martin.sh:/docker-entrypoint-initdb.d/20_martin.sh
|