Download the image (or imager for your preferred system).
Add ssh file in root of boot partition to enable headless SSH access.
See https://www.raspberrypi.org/documentation/configuration/boot_folder.md
for more details.
See also https://www.raspberrypi.org/documentation/configuration/wireless/headless.md for setting up wireless on headless system.
$ ssh pi@raspberrypiDefault password is raspberry. Change this on first login using the passwd command.
Found these instructions to be useful https://devdojo.com/bobbyiliev/how-to-install-docker-and-docker-compose-on-raspberry-pi
In brief:
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker piInstall python3:
sudo apt-get install libffi-dev libssl-dev
sudo apt install python3-dev
sudo apt-get install -y python3 python3-pipInstall docker-compose
sudo pip3 install docker-composeUpdate Raspberry Pi libseccomp2 library.
- Get latest
libseccomp2from here https://packages.debian.org/sid/armhf/libseccomp2/download (tested on 2.5.1) - Install with
sudo dpkg -i libseccomp2_xxxx_armhf.deb