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}
|
2022-02-14 10:14:39 +01:00
|
|
|
image: ${POSTGRES_IMAGE:-postgres:14.2-alpine@sha256:536bc3ad5d53f1b84db958be04013024aae70449c931943ad0a55c56c28f68b3}
|
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}
|
2021-11-23 22:06:30 +01:00
|
|
|
PUID: ${POSTGRES_PUID:-1000}
|
|
|
|
PGID: ${POSTGRES_PGID:-1000}
|
2020-05-15 23:34:50 +02:00
|
|
|
volumes:
|
|
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|