2020-05-15 23:34:50 +02:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
postgres:
|
2021-05-17 14:18:10 +02:00
|
|
|
name: ${POSTGRES_VOLUME_NAME:-postgres}
|
2020-05-15 23:34:50 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
2021-05-17 14:18:10 +02:00
|
|
|
container_name: ${POSTGRES_CONTAINER_NAME:-postgres}
|
2021-07-21 11:06:53 +02:00
|
|
|
image: ${POSTGRES_IMAGE:-postgres:13.3-alpine}
|
2020-05-15 23:34:50 +02:00
|
|
|
restart: always
|
|
|
|
environment:
|
2021-05-17 14:18:10 +02:00
|
|
|
POSTGRES_USER: ${POSTGRES_USER:?err}
|
|
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?err}
|
|
|
|
POSTGRES_DB: ${POSTGRES_DB:?err}
|
2020-05-15 23:34:50 +02:00
|
|
|
volumes:
|
|
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|