Be careful when updating Docker on Proxmox LXC machines (as far as I know): when you run
So your containers aren't starting up. The solution that has worked for me in my LXC with Debian 13 is as follows:
So we switched from version 1.7.28-2 to 1.7.28-1. After that, everything works.
I understand that this is a temporary solution until Docker fixes the issue or until there is an update to LXC.
EDIT:
Proxmox bug report submitted:
https://bugzilla.proxmox.com/show_bug.cgi?id=7006
Workaround:
https://github.com/opencontainers/runc/issues/4968#issue-3593655843
Fix that has been implemented upstream in Incus as well:
https://github.com/lxc/incus/pull/2624
apt update&&apt upgrade, among other packages, containerd.io is updated to 1.7.28-2~debian.13~trixie, so if you try to launch your containers, you will get the following error:docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: open sysctl net.ipv4.ip_unprivileged_port_start file: reopen fd 8: permission denied: unknown
So your containers aren't starting up. The solution that has worked for me in my LXC with Debian 13 is as follows:
Bash:
apt install -y --allow-downgrades containerd.io=1.7.28-1~debian.13~trixie
So we switched from version 1.7.28-2 to 1.7.28-1. After that, everything works.
I understand that this is a temporary solution until Docker fixes the issue or until there is an update to LXC.
EDIT:
Proxmox bug report submitted:
https://bugzilla.proxmox.com/show_bug.cgi?id=7006
Workaround:
https://github.com/opencontainers/runc/issues/4968#issue-3593655843
Fix that has been implemented upstream in Incus as well:
https://github.com/lxc/incus/pull/2624
Last edited: