22735a9ea6
Updated the base docker image
5 lines
143 B
SQL
5 lines
143 B
SQL
#use this while debugging
|
|
CREATE DATABASE news;
|
|
CREATE USER 'news'@'%' IDENTIFIED BY 'venusaur';
|
|
GRANT ALL PRIVILEGES ON news.* TO 'news'@'%';
|