Files
moonwell-core/create_store.sh

6 lines
255 B
Bash

docker compose exec -T ac-database bash -lc '
mysql -uroot -p"$MYSQL_ROOT_PASSWORD" -e "
CREATE DATABASE IF NOT EXISTS store
CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES ON `store`.* TO 'acore'@'localhost' WITH GRANT OPTION;
"'