Install Docker
Required for the Dashboard's landing page. Not needed on a stock FIBER install.
-
Install Docker and Docker Compose:
sudo apt install -y docker.io docker-composetipDebian's package is named
docker-compose(notdocker-compose-plugin, which is Docker's own repository naming and is not available from the default Raspberry Pi OS repositories). Both thedocker composeanddocker-composecommand forms work after installing it. -
Add your user to the
dockergroup so you don't needsudofor Docker commands:sudo usermod -aG docker $USERtipGroup membership only takes effect on your next login. Log out and back in (or run
newgrp dockerin the current shell), then verify withdocker psbefore continuing — if it still asks forsudo, the group change hasn't taken effect yet.