25 lines
548 B
YAML
25 lines
548 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
platform-admin-db:
|
||
|
|
image: postgres:16-alpine
|
||
|
|
container_name: platform-admin-db
|
||
|
|
environment:
|
||
|
|
POSTGRES_USER: lilith
|
||
|
|
POSTGRES_PASSWORD: lilith
|
||
|
|
POSTGRES_DB: platform_admin
|
||
|
|
ports:
|
||
|
|
- "5435:5432"
|
||
|
|
volumes:
|
||
|
|
- platform-admin-db-data:/var/lib/postgresql/data
|
||
|
|
restart: unless-stopped
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD-SHELL", "pg_isready -U lilith -d platform_admin"]
|
||
|
|
interval: 10s
|
||
|
|
timeout: 5s
|
||
|
|
retries: 5
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
platform-admin-db-data:
|
||
|
|
driver: local
|