5 lines
256 B
Bash
5 lines
256 B
Bash
|
cd ..
|
||
|
source Docker/dmp-db.env
|
||
|
export $(cut -d= -f1 Docker/dmp-db.env)
|
||
|
psql -d postgres -U postgres -w --set=POSTGRES_USER="$POSTGRES_USER" --set=POSTGRES_PASSWORD="$POSTGRES_PASSWORD" --set=POSTGRES_DB="$POSTGRES_DB" -f main/createDatabase.sql
|
||
|
./initdb.sh
|