22 lines
587 B
YAML
22 lines
587 B
YAML
version: "3.8"
|
|
|
|
volumes:
|
|
postgres:
|
|
name: ${POSTGRES_VOLUME_NAME:-postgres}
|
|
|
|
services:
|
|
postgres:
|
|
container_name: ${POSTGRES_CONTAINER_NAME:-postgres}
|
|
image: ${POSTGRES_IMAGE:-postgres:14.1-alpine}
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: ${POSTGRES_USER:?err}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?err}
|
|
POSTGRES_DB: ${POSTGRES_DB:?err}
|
|
PUID: ${POSTGRES_PUID:-1000}
|
|
PGID: ${POSTGRES_PGID:-1000}
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|