mirror of
https://github.com/Dokploy/website.git
synced 2026-07-10 16:35:35 +02:00
docs: update manual installation instructions and usage examples
- Added commands for using specific Dokploy versions with curl and bash, enhancing clarity on installation options. - Updated the install.sh script comments to reflect new usage instructions for setting the DOKPLOY_VERSION environment variable.
This commit is contained in:
@@ -292,3 +292,17 @@ To upgrade Dokploy manually, you can use the following command:
|
||||
curl -sSL https://dokploy.com/install.sh | sh -s update
|
||||
```
|
||||
|
||||
To use a specific version, you can use the following command:
|
||||
|
||||
```bash
|
||||
export DOKPLOY_VERSION=canary && curl -sSL https://dokploy.com/install.sh | sh
|
||||
export DOKPLOY_VERSION=feature && curl -sSL https://dokploy.com/install.sh | sh
|
||||
curl -sSL https://dokploy.com/install.sh | sh (defaults to latest)
|
||||
```
|
||||
|
||||
Alternatively, you can use `bash -s`:
|
||||
|
||||
```bash
|
||||
DOKPLOY_VERSION=canary bash -s < <(curl -sSL https://dokploy.com/install.sh)
|
||||
DOKPLOY_VERSION=feature bash -s < <(curl -sSL https://dokploy.com/install.sh)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user