We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd6fdf commit 39015e7Copy full SHA for 39015e7
other/nightly/install.sh
@@ -399,10 +399,10 @@ if [ ! -f ~/.ssh/authorized_keys ]; then
399
fi
400
401
set +e
402
-IS_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l)
+IF_COOLIFY_VOLUME_EXISTS=$(docker volume ls | grep coolify-db | wc -l)
403
set -e
404
405
-if [ "$IS_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then
+if [ "$IF_COOLIFY_VOLUME_EXISTS" -eq 0 ]; then
406
echo " - Generating SSH key."
407
ssh-keygen -t ed25519 -a 100 -f /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal -q -N "" -C coolify
408
chown 9999 /data/coolify/ssh/keys/id.$CURRENT_USER@host.docker.internal
0 commit comments