harbor/make/common/templates/notary/mysql-initdb.d/initial-notaryserver.sql

8 lines
179 B
MySQL
Raw Normal View History

2017-02-20 11:40:05 +01:00
CREATE DATABASE IF NOT EXISTS `notaryserver`;
2017-03-22 11:15:16 +01:00
CREATE USER "server"@"notary-server.%" IDENTIFIED BY "";
2017-02-20 11:40:05 +01:00
GRANT
ALL PRIVILEGES ON `notaryserver`.*
2017-03-22 11:15:16 +01:00
TO "server"@"notary-server.%"