23 lines
464 B
YAML
23 lines
464 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: mdillon/postgis:9.6-alpine
|
|
volumes:
|
|
- postgres-data-volume:/var/lib/postgresql/data
|
|
- ./support/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
mailhog:
|
|
image: mailhog/mailhog
|
|
ports:
|
|
- 1025:1025
|
|
- 8025:8025
|
|
|
|
volumes:
|
|
weblate-data:
|
|
postgres-data-volume:
|