Create kngil DB in init shell script

This commit is contained in:
Lectom C Han
2026-02-04 17:32:28 +09:00
parent 8d7ae422e4
commit 90dbb86c94
2 changed files with 12 additions and 8 deletions

12
docker/initdb/00_create_db.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "postgres" <<'EOSQL'
DO $$
BEGIN
IF NOT EXISTS (SELECT 1 FROM pg_database WHERE datname = 'kngil') THEN
CREATE DATABASE kngil;
END IF;
END
$$;
EOSQL