diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-05 11:21:47 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-05 11:21:47 +0200 |
commit | 78aeb7d411d34781225569f7d40eea3d91b198d2 (patch) | |
tree | 348d70cbd258963b446799d349f27572b4cf5712 /examples/docker/postgres-init.sh | |
parent | 4696f8d68e130632cbcdb14c2bb1dfe71355e9f6 (diff) | |
parent | 2b5780499c3e00e1969c461b864994757a21a8d8 (diff) |
Merge branch 'dockerize' of https://github.com/feuerrot/travelynx into feuerrot-dockerize
Diffstat (limited to 'examples/docker/postgres-init.sh')
-rw-r--r-- | examples/docker/postgres-init.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/docker/postgres-init.sh b/examples/docker/postgres-init.sh new file mode 100644 index 0000000..a8c59d1 --- /dev/null +++ b/examples/docker/postgres-init.sh @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL + CREATE USER ${TRAVELYNX_DB_USERNAME} PASSWORD '${TRAVELYNX_DB_PASSWORD}'; + CREATE DATABASE ${TRAVELYNX_DB_NAME}; + GRANT ALL PRIVILEGES ON DATABASE ${TRAVELYNX_DB_NAME} TO ${TRAVELYNX_DB_USERNAME}; +EOSQL
\ No newline at end of file |