installazione docker – motioneye on ubuntu server 20.1

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:

  1. Add the following line to /etc/apt/sources.list: deb https://download.docker.com/linux/ubuntu/ focal stable
  2. Install GPG key of the repository: # curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  3. Update the package index: # sudo apt-get update
  4. 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

Tags:

Comments

Lascia un commento