chore: use shared postgres for family wishlist

This commit is contained in:
Vaka.pro
2026-04-25 17:25:28 +03:00
parent a7d5260ce3
commit 2adb03ff33
5 changed files with 46 additions and 42 deletions

View File

@@ -1,11 +1,12 @@
services:
postgres:
image: postgres:16-alpine
container_name: family-wishlist-postgres-dev
restart: unless-stopped
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_NAME}
ports:
- "5432:5432"
volumes: