From b820622fcde5c451bd8f0560f2c6b578e9430eab Mon Sep 17 00:00:00 2001 From: Boschkundendienst Date: Fri, 26 May 2023 12:16:35 +0200 Subject: [PATCH] Update prepare.sh changed postgres to postgresql --- prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.sh b/prepare.sh index 660cda2..29c2e27 100755 --- a/prepare.sh +++ b/prepare.sh @@ -10,7 +10,7 @@ echo "Preparing folder init and creating ./init/initdb.sql" mkdir ./init >/dev/null 2>&1 mkdir -p ./nginx/ssl >/dev/null 2>&1 chmod -R +x ./init -docker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh --postgres > ./init/initdb.sql +docker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh --postgresql > ./init/initdb.sql echo "done" echo "Creating SSL certificates" openssl req -nodes -newkey rsa:2048 -new -x509 -keyout nginx/ssl/self-ssl.key -out nginx/ssl/self.cert -subj '/C=DE/ST=BY/L=Hintertupfing/O=Dorfwirt/OU=Theke/CN=www.createyourown.domain/emailAddress=docker@createyourown.domain'