| page | https://idle.run/docker-shinobi |
|---|---|
| title | Shinobi Support for Raspberry Pi |
| tags | shinobi camera raspberry pi |
| date | 2018-05-26 |
Run https://shinobi.video/ on Docker on a Raspberry Pi (tested on Raspberry Pi 3 B+)
Install Docker as described here: https://www.raspberrypi.org/blog/docker-comes-to-raspberry-pi/
curl -sSL https://get.docker.com | sh
Get some dependencies
sudo apt-get install -y git-core python3 python3-pip
sudo pip3 install docker-compose
Checkout the repo
git clone https://github.com/idlerun/docker-shinobi.git
Create containers:
cd docker-shinobi/debian
docker-compose up -d --build
Log in:
Web Address : http://xxx.xxx.xxx.xxx:8080/super
Username : admin@shinobi.video
Password : admin
More info here: https://shinobi.video/docs/start#content-docker
raspbian has pretty limited swap by default, might be helpful to add osme more.
mkdir -v /var/cache/swap
cd /var/cache/swap
sudo dd if=/dev/zero of=swapfile bs=1K count=2M
sudo mkswap swapfile
sudo swapon swapfile