This is a community fork of Dokploy. We are not affiliated with or competing against the Dokploy project. This fork exists to make new features available faster.
Based on Dokploy v0.29.8 | Fork version v0.29.8-devino.1
This fork adds two features on top of the official Dokploy release:
- Per-server deployment queues with configurable concurrency (default: 1 = serial, same as stock)
- Cancel deployments mid-build (queued or active)
- Process-group isolation — cancelling one build doesn't affect others
Concurency-small.mp4
- New Networks page in the sidebar
- Create, delete, and manage Docker overlay networks
- Attach networks to any application or database service
- Per-resource network picker in the Advanced tab
Networks-small.mp4
Fresh install on a clean server (same requirements as Dokploy — Linux, root access):
curl -sSL https://dokploy-community.devino.ca/install.sh | shInstall a specific version:
export DOKPLOY_VERSION=v0.29.8-devino.1
curl -sSL https://dokploy-community.devino.ca/install.sh | shUpdate an existing installation:
curl -sSL https://dokploy-community.devino.ca/install.sh | sh -s updateIf you're already running official dokploy/dokploy, you can switch to this fork:
docker service update \
--image ghcr.io/devinosolutions/dokploy-community:v0.29.8-devino.1 \
--with-registry-auth \
dokployThe new migrations are additive (new table + new columns with defaults). Rollback to official is safe:
docker service update --image dokploy/dokploy:v0.29.8 --with-registry-auth dokployghcr.io/devinosolutions/dokploy-community:v0.29.8-devino.1 # versioned (recommended)
ghcr.io/devinosolutions/dokploy-community:canary # latest build
The image is public — no authentication required.
We follow the scheme v<upstream-version>-devino.<release>:
| Upstream | Fork release | Tag |
|---|---|---|
| v0.29.8 | 1st release | v0.29.8-devino.1 |
| v0.29.8 | 2nd fix | v0.29.8-devino.2 |
| v0.30.0 | 1st release | v0.30.0-devino.1 |
This fork tracks upstream Dokploy's canary branch. To contribute:
- Fork this repo
- Create a feature branch from
canary - Open a PR targeting
canary
For features that should go upstream, please also open a PR on the official Dokploy repo.
- Dokploy — the original project by @siumauricio
- This fork is maintained by Devino Solutions
Same as upstream — Apache 2.0