mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 16:19:37 +01:00
4 lines
160 B
MySQL
4 lines
160 B
MySQL
|
CREATE DATABASE notaryserver;
|
||
|
CREATE USER server;
|
||
|
alter user server with encrypted password 'password';
|
||
|
GRANT ALL PRIVILEGES ON DATABASE notaryserver TO server;
|