refactor: Update install.sh script to check if coolify-db volume exists before generating SSH key

This commit is contained in:
Andras Bacsai
2024-09-20 14:39:58 +02:00
parent 760cf8aeb5
commit fa375e2fd8

View File

@@ -479,9 +479,10 @@ syncSshKeys() {
fi fi
} }
IS_COOLIFY_VOLUME_EXISTS=$(docker volume inspect coolify-db 2>/dev/null) set +e
IS_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l)
if [ -z "$IS_COOLIFY_VOLUME_EXISTS" ]; then set -e
if [ "$IS_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then
echo " - Generating SSH key." echo " - Generating SSH key."
ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal -q -N "" -C coolify ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal -q -N "" -C coolify
chown 9999 /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal chown 9999 /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal