To Reproduce
run the install script as listed in the docs
curl -sSL https://dokploy.com/install.sh | sh
see the following error
sh: 264: [[: not found
Current vs. Expected behavior
docs say to use the following:
curl -sSL https://dokploy.com/install.sh | sh
however on line 264 of the installation script
|
if [[ "$VERSION_TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+ ]]; then |
it denotes using [[ double square brackets, these are a bash only conditional and do not work in sh, the start of the script denotes bash, but this is ignored since the doc script line pipes to sh
suggest changing docs to
curl -sSL https://dokploy.com/install.sh | bash
Provide environment information
Which area(s) are affected? (Select all that apply)
Installation
Additional context
No response
To Reproduce
run the install script as listed in the docs
curl -sSL https://dokploy.com/install.sh | shsee the following error
sh: 264: [[: not found
Current vs. Expected behavior
docs say to use the following:
curl -sSL https://dokploy.com/install.sh | shhowever on line 264 of the installation script
website/apps/website/public/install.sh
Line 264 in 9f6d3b5
it denotes using
[[double square brackets, these are a bash only conditional and do not work in sh, the start of the script denotes bash, but this is ignored since the doc script line pipes to shsuggest changing docs to
curl -sSL https://dokploy.com/install.sh | bashProvide environment information
Which area(s) are affected? (Select all that apply)
Installation
Additional context
No response