goweb-oidc/misc/compose/mariadb/init-db.d/create_database_hydra.sh

6 lines
166 B
Bash
Raw Normal View History

2025-03-07 12:07:54 +01:00
#!/bin/bash
set -xeo pipefail
echo "CREATE DATABASE IF NOT EXISTS \`hydra\`;" | "${mysql[@]}"
echo "GRANT ALL ON \`hydra\`.* TO '$MYSQL_USER'@'%' ;" | "${mysql[@]}"