Needed to add the -i flag

otherise EOF trick doesn't work.
This commit is contained in:
Egon Rijpkema 2017-05-15 09:18:54 +02:00
parent 8a1bee4087
commit a4e62607a3
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash
mysql -uroot -pgeheim --host 127.0.0.1 << EOF
# Start a mariadb container to use its mysql client to initialize the keystone database.
docker run -i mariadb:10.1.22 mysql -uroot -pgeheim --host 172.23.38.125 << EOF
CREATE DATABASE IF NOT EXISTS keystone;
GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' IDENTIFIED BY 'keystone';
GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' IDENTIFIED BY 'keystone';