File size: 490 Bytes
f0d069b
bbec4a1
f0d069b
 
bbec4a1
f0d069b
bbec4a1
 
f0d069b
 
e757948
 
 
 
f0d069b
 
cefb66a
f0d069b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# set -e

# Start MySQL service
# service mysql start

# # Wait for MySQL to be available
# sleep 10

# Create the database and user
mysql -u root -proot -e "CREATE DATABASE IF NOT EXISTS big;"
# mysql -u root -proot -e "CREATE USER 'bagisto'@'%' IDENTIFIED BY 'bagisto';"
# mysql -u root -proot -e "GRANT ALL PRIVILEGES ON bagisto.* TO 'bagisto'@'%';"
# mysql -u root -proot -e "FLUSH PRIVILEGES;"

# Stop MySQL service
# service mysql stop

# Start the main process
exec "$@"