Merge pull request 'Mise à jour de Postgres + configuration' (#8) from postgres into main

Reviewed-on: #8
This commit is contained in:
Simon 2021-11-24 09:21:44 +01:00
commit 23c1af409a
1 changed files with 3 additions and 1 deletions

View File

@ -7,12 +7,14 @@ volumes:
services:
postgres:
container_name: ${POSTGRES_CONTAINER_NAME:-postgres}
image: ${POSTGRES_IMAGE:-postgres:13.4-alpine}
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