Apache Airflow dags w/ backend configuration bundle.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
set -e |
|
|
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL |
|
CREATE USER test WITH PASSWORD 'postgres'; |
|
CREATE DATABASE test; |
|
GRANT ALL PRIVILEGES ON DATABASE test TO test; |
|
EOSQL |