step1 installazione docker
tramite pacchetto .deb prelevabile al seguente percorso https://download.docker.com/linux/ubuntu/dists/
containerd.io_1.4.9-1_amd64.deb docker-ce-cli_20.10.9~3-0~ubuntu-focal_amd64.deb docker-ce_20.10.9~3-0~ubuntu-focal_amd64.deb
installare con il comando seguante installare i tre pacchetti
sudo dpkg -i /path/to/package.deb
oppure:
Add the following line to /etc/apt/sources.list: deb https://download.docker.com/linux/ubuntu/ focal stable
Install GPG key of the repository: # curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Update the package index: # sudo apt-get update
Install docker-ce deb package: # sudo apt-get install docker-ce
start del daemon
sudo service docker start
test se docker dunziona
sudo docker run hello-world
step2 installazione di MOTIONEYE in docker
docker pull ccrisan/motioneye:master-amd64
al termine dell’installazione avviare il docker
docker run --name="motioneye" \
-p 8765:8765 \
--hostname="motioneye" \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/motioneye:/etc/motioneye \
-v /var/lib/motioneye:/var/lib/motioneye \
--restart="always" \
--detach=true \
ccrisan/motioneye:master-amd64
test motioneye on
your_ip_address:8765
Lascia un commento
Devi essere connesso per inviare un commento.