retrofairie/docker/mysql/create-testing-database.sh
2025-02-23 20:44:23 -08:00

6 lines
196 B
Bash

#!/usr/bin/env bash
mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL
CREATE DATABASE IF NOT EXISTS testing;
GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%';
EOSQL