chirpstack-docker/configuration/postgresql/initdb/001-init-chirpstack.sh
2022-08-02 20:34:34 +01:00

8 lines
202 B
Bash

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