-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
I just fixed the issue applying this fix: https://www.youtube.com/watch?v=VYK5lsA4sgI
Basically, what the video description says:
The Problem: CasaOS's App Management component is built for an older Docker API (like v1.43), and a modern Docker update (v29.x+) requires a newer API (v1.44+). We'll fix this by telling Docker to accept older clients.
The fix there worked like a charm.
Here are the steps:
-
run these commands in the Terminal:
➡️sudo mkdir -p /etc/systemd/system/docker.service.d
➡️sudo nano /etc/systemd/system/docker.service.d/override.conf -
Paste this on your override.conf:
[Service]
Environment="DOCKER_MIN_API_VERSION=1.43"
Reload the Daemon
➡️ sudo systemctl daemon-reload
Restart Docker
➡️ sudo systemctl restart docker
Verify Changes (Optional)
➡️ sudo systemctl show docker | grep DOCKER_MIN_API_VERSION