martin/docker-compose.yml
2021-10-07 17:00:21 +03:00

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