chirpstack/.docker-compose/postgresql/initdb/0003-init_chirpstack_integration.sh

8 lines
250 B
Bash
Raw Normal View History

2022-04-06 20:18:32 +00:00
#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL
create role chirpstack_integration with login password 'chirpstack_integration';
create database chirpstack_integration with owner chirpstack_integration;
EOSQL