github Dokploy/dokploy v0.25.7

latest release: v0.25.8
8 hours ago

Breaking changes

Your version of Docker may have been updated to version 29.x.x due to possible automatic updates to your operating system, which will cause Traefik to break. To fix this, you will need to perform this manual procedure (using traefik:v3.6.1). This applies to Dokploy servers and remote servers, you will have a few downtime on your services, but this is necessary to prevent future breaks on your apps (New installations not need to apply this changes)

Traefik Issue: traefik/traefik#12256

docker pull traefik:v3.6.1

docker stop dokploy-traefik || true
docker rm dokploy-traefik || true

docker run -d \
  --name dokploy-traefik \
  --restart always \
  -v /etc/dokploy/traefik/traefik.yml:/etc/traefik/traefik.yml \
  -v /etc/dokploy/traefik/dynamic:/etc/dokploy/traefik/dynamic \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -p 80:80/tcp \
  -p 443:443/tcp \
  -p 443:443/udp \
  traefik:v3.6.1

docker network connect dokploy-network dokploy-traefik || true

In case where you have troubles to update to the latest version you can run the following command:

curl -sSL https://dokploy.com/install.sh | sh -s update

Important Notes:

  1. We did a refactor to maintain the same build process in a unified way on the dokploy server and remote servers (previously it was separate, we ran certain commands on the dokploy server and remote servers), which sometimes caused confusion and we had specific errors on remote servers but not on the dokploy server (this improved error capture to show them in the logs).
  2. We fixed the general monitoring error on the dokploy server that was not correctly displaying RAM usage or CPU usage.
  3. We are in the process of improving our documentation. To do so, we want to hear from you and find out what you think is missing and what we should add. We have a dedicated channel on Discord for this topic. Feel free to express yourself https://discord.gg/vXbCAWmnE8

What's Changed

New Contributors

Full Changelog: v0.25.6...v0.25.7

Don't miss a new dokploy release

NewReleases is sending notifications on new releases.