como/templates/init-user-db.sh

9 lines
242 B
Bash
Raw Permalink Normal View History

#!bin/bash
2022-10-03 22:08:25 +02:00
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE USER como WITH PASSWORD 'somenotverysecurepassword';
CREATE DATABASE como;
GRANT ALL PRIVILEGES ON DATABASE como TO como;
EOSQL