mirror of
https://github.com/goharbor/harbor
synced 2025-04-06 17:52:48 +00:00
4 lines
160 B
SQL
4 lines
160 B
SQL
CREATE DATABASE notaryserver;
|
|
CREATE USER server;
|
|
alter user server with encrypted password 'password';
|
|
GRANT ALL PRIVILEGES ON DATABASE notaryserver TO server; |