2019-08-28 14:04:15 +03:00
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
martin:
|
2022-12-14 04:14:07 +03:00
|
|
|
image: maplibre/martin:v0.6.2
|
2019-08-28 14:04:15 +03:00
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
2022-09-13 08:55:26 +03:00
|
|
|
- "3000:3000"
|
2019-08-28 14:04:15 +03:00
|
|
|
environment:
|
|
|
|
- DATABASE_URL=postgres://postgres@db/db
|
2021-07-16 13:09:18 +03:00
|
|
|
- RUST_LOG=actix_web=info,martin=debug,tokio_postgres=debug
|
2019-08-28 14:04:15 +03:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
|
2020-12-27 16:47:47 +03:00
|
|
|
db:
|
2022-10-25 21:54:36 +03:00
|
|
|
image: postgis/postgis:14-3.3-alpine
|
2020-12-27 16:35:05 +03:00
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
2022-09-13 08:55:26 +03:00
|
|
|
- "5432:5432"
|
2020-12-27 16:35:05 +03:00
|
|
|
environment:
|
2022-10-25 21:54:36 +03:00
|
|
|
# POSTGRES_* variables are used by the postgis/postgres image
|
|
|
|
# PG_* variables are used by psql
|
2020-12-27 16:35:05 +03:00
|
|
|
- POSTGRES_DB=db
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
2022-10-25 21:54:36 +03:00
|
|
|
- PGDATABASE=db
|
|
|
|
- PGUSER=postgres
|
2020-12-27 16:35:05 +03:00
|
|
|
volumes:
|
|
|
|
- ./tests/fixtures:/fixtures
|
2022-10-25 21:54:36 +03:00
|
|
|
- ./tests/fixtures/initdb-dc.sh:/docker-entrypoint-initdb.d/20_martin.sh
|
2020-12-27 16:35:05 +03:00
|
|
|
|
2020-12-27 16:47:47 +03:00
|
|
|
db-legacy:
|
2022-12-04 08:34:44 +03:00
|
|
|
image: postgis/postgis:11-3.0-alpine
|
2019-08-28 14:04:15 +03:00
|
|
|
restart: unless-stopped
|
2019-08-30 18:42:24 +03:00
|
|
|
ports:
|
2022-09-13 08:55:26 +03:00
|
|
|
- "5432:5432"
|
2019-08-28 14:04:15 +03:00
|
|
|
environment:
|
|
|
|
- POSTGRES_DB=db
|
|
|
|
- POSTGRES_USER=postgres
|
2020-12-27 16:35:05 +03:00
|
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
2022-10-25 21:54:36 +03:00
|
|
|
- PGDATABASE=db
|
|
|
|
- PGUSER=postgres
|
2019-08-28 14:04:15 +03:00
|
|
|
volumes:
|
2020-12-27 16:35:05 +03:00
|
|
|
- ./tests/fixtures:/fixtures
|
2022-10-25 21:54:36 +03:00
|
|
|
- ./tests/fixtures/initdb-dc.sh:/docker-entrypoint-initdb.d/20_martin.sh
|