We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd177b commit 4576623Copy full SHA for 4576623
docker/mysql/init.sql
@@ -1,2 +1,4 @@
1
-ALTER USER 'mvc_user'@'%' IDENTIFIED BY 'mvc_Pass995!';
2
-FLUSH PRIVILEGES;
+SET @password = '${MYSQL_PASSWORD}';
+
3
+ALTER USER 'mvc_user'@'%' IDENTIFIED BY @password;
4
+FLUSH PRIVILEGES;
0 commit comments