forked from laradock/laradock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request laradock#1614 from ahkui/postgresql_init_db
add postgres init db
- Loading branch information
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# | ||
# Copy createdb.sh.example to createdb.sh | ||
# then uncomment then set database name and username to create you need databases | ||
# | ||
# example: .env POSTGRES_USER=appuser and need db name is myshop_db | ||
# | ||
# psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL | ||
# CREATE USER myuser WITH PASSWORD 'mypassword'; | ||
# CREATE DATABASE myshop_db; | ||
# GRANT ALL PRIVILEGES ON DATABASE myshop_db TO myuser; | ||
# EOSQL | ||
# | ||
# this sh script will auto run when the postgres container starts and the $DATA_PATH_HOST/postgres not found. | ||
# | ||
|
||
set -e | ||
# psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL | ||
# CREATE USER db1 WITH PASSWORD 'db1'; | ||
# CREATE DATABASE db1; | ||
# GRANT ALL PRIVILEGES ON DATABASE db1 TO db1; | ||
# EOSQL | ||
|
||
# psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL | ||
# CREATE USER db2 WITH PASSWORD 'db2'; | ||
# CREATE DATABASE db2; | ||
# GRANT ALL PRIVILEGES ON DATABASE db2 TO db2; | ||
# EOSQL | ||
|
||
# psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL | ||
# CREATE USER db3 WITH PASSWORD 'db3'; | ||
# CREATE DATABASE db3; | ||
# GRANT ALL PRIVILEGES ON DATABASE db3 TO db3; | ||
# EOSQL |