chirpstack-docker/configuration/postgresql/initdb/004-init-griffon.sh
2021-05-05 08:30:56 +02:00

8 lines
190 B
Bash

#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
create role griffon with login password 'griffon';
create database griffon with owner griffon;
EOSQL