Hello!
I run a bunch of pi0s running motionOS - works great.
I have a pi2 doing something else (auto irrigation), so looked into running motioneye in docker.
sudo docker run --name="motioneye" \
-p 80:80 \
-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 \
--device=/dev/video0 \
ccrisan/motioneye:master-armhf
I can access the camera over the network with ip:8765 (all good)
I changed the docker motioneye to have the same admin pass.
However, when attempting to add the docker motioneye to the rest, I get:
Camera
Failed to connect to 192.168.1.131 port 80: Connection refused
Is there another port I should be forwarding here?
Cheers!