When I followed the official instructions, it didn’t work for me. This guide is fully functional. It takes a moment for CubeOS to start up, and you just need to enter the Raspberry Pi’s IP address and you’ll get into CubeOS
You need to factor in higher load, it’s probably better to use KVM.
HOW TO INSTALL DOCKER:
- sudo apt update && sudo apt upgrade
- sudo mkdir -p /etc/apt/keyrings
- curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
- echo “deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] Index of linux/debian/ $(lsb_release -cs) stable” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
- sudo apt update
- sudo apt install docker-ce docker-ce-cli containerd.io
- sudo usermod -aG docker $USER
- newgrp docker
- sudo systemctl enable docker
- echo “kernel=kernel8.img” | sudo tee -a /boot/firmware/config.txt
- sudo reboot
- sudo docker pull https://ghcr.io/ewelinkcube/cube-os:2.11.0
RUN CUBEOS:
docker run -d
–name cubeos
–privileged
–net=host
–restart=unless-stopped
-v /home/xxx/data:/data
-v /run/dbus/system_bus_socket:/host_dbus/system_bus_socket:ro https://ghcr.io/ewelinkcube/cube-os:2.11.0
xxx - enter you folder name
Example:
Automatic startup after restart. Instead of jojkoba, put the name of your account!!!


