CASOS – Failed to load apps, please refresh later. “Docker Downgrade”

“Docker Downgrade: 29.x → 27.x (Stable for CasaOS)

sudo systemctl stop docker
sudo apt remove -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

sudo apt update
sudo apt install -y \
  docker-ce=5:27.3.1-1~debian.12~bookworm \
  docker-ce-cli=5:27.3.1-1~debian.12~bookworm \
  containerd.io=1.7.20-1 \
  docker-buildx-plugin=0.16.2-1~debian.12~bookworm \
  docker-compose-plugin=2.29.1-1~debian.12~bookworm

sudo systemctl enable docker
sudo systemctl start docker

Açıklama

Bu komutlar, uyumsuz Docker 29.x sürümünü kaldırır ve CasaOS ile doğru şekilde çalışan kararlı 27.3.1 sürümünü yükler. Yalnızca Docker motoru değiştirildiğinden, /var/lib/docker altındaki kapsayıcılar ve birimler değişmeden kalır.

Sorumluluk Reddi

Bu prosedür, düşük seviyeli sistem bileşenlerini değiştirir. Herhangi bir veri kaybı, yapılandırma sorunu veya hizmet kesintisi kullanıcının sorumluluğundadır. Bu komutları çalıştırmadan önce sisteminizi değerlendirin.

These commands remove the incompatible Docker 29.x release and install the stable 27.3.1 version, which works correctly with CasaOS. Containers and volumes under /var/lib/docker remain intact because only the Docker engine is replaced.

Disclaimer

This procedure modifies low-level system components. Any data loss, configuration issues, or service interruptions are the user’s responsibility. Evaluate your system before running these commands.

Alıntıdır, Teşekkürler dogukansahil