Shinobi Support for Raspberry Pi
Project Page: github/docker-shinobi
Overview
Run https://shinobi.video/ on Docker on a Raspberry Pi (tested on Raspberry Pi 3 B+)
Requirements
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
Usage
Create containers:
cd docker-shinobi/debian
docker-compose up -d --build
Log in:
Web Address : http://xxx.xxx.xxx.xxx:8080/super
Username : [email protected]
Password : admin
More info here: https://shinobi.video/docs/start#content-docker
Swap
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