Files
docker/nginx/createdb.sql
T

5 lines
121 B
SQL

create user npm identified by '<passwort>';
create database npm;
grant all privileges on npm.* to npm;
flush privileges;