You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Sleeping for 2 sec to let the services boot"
sleep 2
echo "Done!"
echo "Creating database user and schema"
mysql -uroot -e 'create schema original_shop; create user "dbuser"@"localhost" identified by "hia6koocie9Eahoi"; GRANT all privileges on original_shop.* to "dbuser"@"localhost"; FLUSH privileges;'
echo "Done!"
echo "Populating database"
mysql -udbuser -phia6koocie9Eahoi original_shop < /opt/db.sql