Files
2026-04-22 09:45:29 +02:00

6 lines
128 B
Bash
Executable File

#!/bin/bash
# Docker init env varovi
USER=${POSTGRES_USER:-postgres}
DB=${POSTGRES_DB:-postgres}
pg_isready -U "$USER" -d "$DB"