-
Notifications
You must be signed in to change notification settings - Fork 9
Raspberry Pi perquisites
How to set up Docker on your raspberry pi. Make sure you have the latest image of Raspbian OS installed on your pi.
1. Update and Upgrade
Start by updating and upgrading the system. This ensures you install the latest version of the software. Open a terminal window and run the command:
sudo apt-get update && sudo apt-get upgrade
2. Download and run docker install script
curl -fsSL https://get.docker.com -o get-docker.sh
Execute the script using the command:
sudo sh get-docker.sh
3. install Docker Compose
pip3 install docker-compose
3. Check Docker Version and Info
Check the version of Docker on your Raspberry Pi by running
docker version
If a docker version is listed you successfully installed docker on your PI
1. Install sqlite
All you need to do to install SQLite is to run the following command.
sudo apt install sqlite3