This is a list of disk images to flash on SD card in order to natively run docker on your Raspberry: hypriot download page:
From command line:
flash --hostname <host-name> <url-to-download-the-os-from>Mount SD to Raspberry. After a while you can access through the name you assigned:
ssh pi@<host-name>.local(password: raspberry)
Set-up SSH connection
ssh-copy-id pirate@black-pearlLock Down SSH
echo "" | sudo tee -a /etc/ssh/sshd_config
echo "PermitRootLogin no" | sudo tee -a /etc/ssh/sshd_config
echo "PasswordAuthentication no" | sudo tee -a /etc/ssh/sshd_config
echo "AllowUsers pirate" | sudo tee -a /etc/ssh/sshd_config .. restart SSH
sudo service ssh restartTest it
ssh -o PasswordAuthentication=YES -o PubkeyAuthentication=no pirate@<hostname>.local