2017-10-31 14:57:26 +00:00
|
|
|
version: '3'
|
2017-10-08 20:21:51 +00:00
|
|
|
services:
|
|
|
|
db:
|
|
|
|
image: mdillon/postgis:9.6-alpine
|
|
|
|
volumes:
|
2018-03-16 00:19:53 +00:00
|
|
|
- postgres-data-volume:/var/lib/postgresql/data
|
2017-10-08 20:21:51 +00:00
|
|
|
- ./support/postgres/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
|
|
|
|
ports:
|
2018-03-27 02:21:29 +00:00
|
|
|
- 5432:5432
|
2018-11-24 13:39:21 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
- POSTGRES_PASSWORD=postgres
|
2017-10-08 20:21:51 +00:00
|
|
|
|
|
|
|
mailhog:
|
|
|
|
image: mailhog/mailhog
|
|
|
|
ports:
|
|
|
|
- 1025:1025
|
|
|
|
- 8025:8025
|
2018-03-16 00:19:53 +00:00
|
|
|
|
2017-10-08 20:21:51 +00:00
|
|
|
volumes:
|
|
|
|
weblate-data:
|
2018-03-16 00:19:53 +00:00
|
|
|
postgres-data-volume:
|