Installing Docker on a Pi

Intro

Installing Docker on a Pi is super easy also.

First make sure your Raspian is up to date

1
2
sudo apt-get update
sudo apt-get upgrade

Then, all you need to do is run this.

1
curl -sSL https://get.docker.com | sudo sh

And voila, docker is installed:

1
2
3
4
5
6
7
8
9
10
11
pi@raspian:~$ docker info
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true

Now, you can run my Mystic BBS image or my MBSE BBS image. If you need some more info about Docker, you might find this useful.

Share