Dokploy Cloud: Use Dokploy directly without worrying about maintenance or updates. Enjoy a hassle-free experience with Dokploy Cloud.
Sign up
```bash
curl -sSL https://dokploy.com/install.sh | sh
```
See [Manual Installation](/docs/core/manual-installation) if you want to customize your Dokploy installation.
### Advanced Installation Options
The installation script automatically detects and installs the latest stable version from GitHub. However, you can customize the installation using environment variables:
#### Install Specific Versions
**Install Canary Version (Development):**
```bash
export DOKPLOY_VERSION=canary && curl -sSL https://dokploy.com/install.sh | sh
```
**Install Latest Stable:**
```bash
export DOKPLOY_VERSION=latest && curl -sSL https://dokploy.com/install.sh | sh
```
**Install a Specific Version:**
Every [Dokploy release](https://github.com/Dokploy/dokploy/releases) includes its own `install.sh` as a release asset, which installs exactly that version with the setup it expects. Replace the version tag in the URL with the one you want:
```bash
curl -sL https://github.com/Dokploy/dokploy/releases/download/v0.26.6/install.sh | sh
```