mirror of
https://github.com/plankanban/planka.git
synced 2026-02-24 19:08:59 +03:00
Installer fails on Debian 13 #794
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @0xphk on GitHub (Aug 25, 2025).
Tried the installer.sh script today on a new Debian 13 installation but the installation/setup of Docker seems to fail. (https://docs.planka.cloud/docs/installation/automated/getting-started)
If you inspect the installed packages afterwards, docker-ce is in 'rc' state and docker-cli in 'iU' state. Docker-ce-cli is missing completely.
You can fix it by issuing
apt install docker-cewhich then removes 'docker-cli' and installs docker-ce and docker-ce-cli.After that step,
systemctl status docker.serviceshows a running docker service, calling the installer again, breaks it again.I can provide more info if required, not sure right now how to proceed, any help is appreciated.
@meltyshev commented on GitHub (Aug 26, 2025):
Hey! Thanks for reporting this. It's probably better not to use it right now - it hasn't been synced with the latest version. I wouldn't recommend using it until we update it. We also need to add a note about this to the docs...
@0xphk commented on GitHub (Aug 28, 2025):
We took the Docker compose way and this works for us as well. Thanks for the tool btw.
One note to add, the manual installation still points to Debian11 and I wasn't able to get it running on
Debian13 using this approach as well.