ultisuite-backend/deploy/init-db.sh
R3D347HR4Y 0466a1c169
Some checks are pending
CI / Go tests (push) Waiting to run
CI / Integration tests (push) Waiting to run
CI / DB migrations (push) Waiting to run
wow
2026-06-11 01:22:52 +02:00

10 lines
232 B
Bash

#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE DATABASE authentik;
CREATE DATABASE nextcloud;
CREATE DATABASE immich;
CREATE DATABASE openwebui;
EOSQL