fix: add user mapping for database container.

This commit is contained in:
syntaxbullet
2026-01-14 14:48:10 +01:00
parent 3a620a84c5
commit c360a0a164

View File

@@ -2,6 +2,7 @@ services:
db: db:
image: postgres:17-alpine image: postgres:17-alpine
container_name: aurora_db container_name: aurora_db
user: "${UID:-1000}:${GID:-1000}"
environment: environment:
- POSTGRES_USER=${DB_USER} - POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD} - POSTGRES_PASSWORD=${DB_PASSWORD}