Skip to content

Conversation

@Bima42
Copy link
Contributor

@Bima42 Bima42 commented Nov 13, 2025

What is this PR about?

Bump traefik to latest 3.6.1 release in order to fix the Docker API deprecation

Issues related (if applicable)

closes #2990

Additional

  • Migration documentation is available here. I didnt see any big changes from v3.5.0 -> v3.6.1 that could break anything but I may have missed something
  • The fix made by Traefik is available in this PR and has been merged for this release
  • You can find the website update in this PR

@LickABrick
Copy link

LickABrick commented Nov 13, 2025

Even though they pushed the fix to the 3.6.0 branch they haven't yet released a new docker image which inlcudes these fixes. So I don't think this wil fix the issue as of now. I think a 3.6.1. will be release (hopefully soon) which would fix the issue.

(See traefik/traefik#12253 (comment))

Please correct me if I'm wrong :)

@Bima42
Copy link
Contributor Author

Bima42 commented Nov 13, 2025

Yes good catch, I think you're right!
They just pushed some changes for v3.6.1 less than an hour ago. The update has been published but the image is not available yet. I'm still going to bump to 3.6.1 while waiting for the release

@Bima42 Bima42 force-pushed the fix/bump-traefik-version branch from 93e481d to d22aa05 Compare November 13, 2025 15:17
@Bima42 Bima42 changed the title chore: bump traefik to 3.6.0 chore: bump traefik to 3.6.1 Nov 13, 2025
@Bima42
Copy link
Contributor Author

Bima42 commented Nov 14, 2025

The image appears to have been released
Pulling the v3.6.1 works

@Du7chManiac
Copy link

The image appears to have been released Pulling the v3.6.1 works

I pulled the image but how can I make dokploy use it?

@mzeeb
Copy link

mzeeb commented Nov 14, 2025

The image appears to have been released Pulling the v3.6.1 works

I pulled the image but how can I make dokploy use it?

@Du7chManiac

On your host where Dokploy runs:

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

@gOOvER
Copy link

gOOvER commented Nov 14, 2025

This fix should be implemeted ASAP, because it breaks all

@Du7chManiac
Copy link

The image appears to have been released Pulling the v3.6.1 works

I pulled the image but how can I make dokploy use it?

@Du7chManiac

On your host where Dokploy runs:

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

It works, thanks a lot!

@Siumauricio Siumauricio merged commit ea5d86e into Dokploy:canary Nov 15, 2025
4 checks passed
@tafaust
Copy link

tafaust commented Nov 15, 2025

Any plans when this will be released in a new version?

@kheiner
Copy link

kheiner commented Nov 15, 2025

There's a pull request in the website repo to get the install.sh script to include Traefik 3.6.1

@angelru
Copy link

angelru commented Nov 16, 2025

When is this going to be fixed?

@JowaDev
Copy link

JowaDev commented Nov 19, 2025

We are getting in trouble : #3053

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Traefik needs to be updated due to Docker API deprecation

10 participants