Skip to content

Raspberry Pi perquisites

Timo Wielink edited this page Nov 12, 2021 · 3 revisions

How to set up Docker on your raspberry pi. Make sure you have the latest image of Raspbian OS installed on your pi.

Docker Install

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

Sqlite3 install

1. Install sqlite

All you need to do to install SQLite is to run the following command.

sudo apt install sqlite3

Clone this wiki locally