This commit is contained in:
2023-06-16 06:35:23 +00:00
parent 406938f4cd
commit 57e5b759c1

View File

@@ -5,6 +5,8 @@ if [ "$SERVICE_DIR" == "" ]; then
fi;
if [[ "$NEXTCLOUD" == "yes" ]]; then
echo "Nextcloud install has started";
git clone ssh://$GIT_REPO/$ORGANIZATION/nextcloud.git /tmp/nextcloud
sed -i "s/DOMAIN_NAME/$NEXTCLOUD_DOMAIN/g" /tmp/nextcloud/nextcloud-secret.json
sed -i "s/USERNAME/$NEXTCLOUD_USERNAME/g" /tmp/nextcloud/nextcloud-secret.json
@@ -20,6 +22,8 @@ if [[ "$NEXTCLOUD" == "yes" ]]; then
fi;
if [[ "$BITWARDEN" == "yes" ]]; then
echo "Bitwarden install has started";
git clone ssh://$GIT_REPO/$ORGANIZATION/bitwarden.git /tmp/bitwarden
BITWARDEN_TOKEN=$(openssl rand -base64 48);