Skip to content

Commit 902c360

Browse files
committed
Remove environment variable usage in the SQL initialization script
1 parent 3537660 commit 902c360

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/mysql/init/01-create-tables.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-- Example initialization script
22
-- This will run when the MySQL container is first started
33

4-
-- Use the database specified in the environment variable
5-
USE ${MYSQL_DATABASE};
4+
-- Use database
5+
-- USE test;
66

77
-- Create a sample table
88
-- CREATE TABLE IF NOT EXISTS sample_table (

0 commit comments

Comments
 (0)