v4l2rtspserver
v4l2rtspserver copied to clipboard
Latest Docker image won't install on RPI zero (original v1 hardware).
Describe the bug Docker image won't install on RPI zero (original v1 hardware).
To Reproduce Steps to reproduce the behavior:
- installed docker on raspberry pi OS (aka raspbian)
- docker pull mpromonet/v4l2rtspserver:latest
- or try with docker pull --platform linux/arm/v6 mpromonet/v4l2rtspserver:latest
Expected behavior image should pull since there is a linux/arm/v6 version. In fact there are two, which might be the problem?
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information): RPI Zero v1, bullseye uname -a: Linux raspberrypi 6.1.21+ #1642 Mon Apr 3 17:19:14 BST 2023 armv6l GNU/Linux
Hi,
It seems arm/v7 & arm/v6 are mixed. Did you try to pull mpromonet/v4l2rtspserver:latest-arm32v6 ?
Best Regards, Michel.
Hi,
I made a test on a Raspberry B, it is working since https://github.com/mpromonet/v4l2rtspserver/commit/ef86de39227e0c97ea27de4955cdc6589355e266. There is one image arm/v6 and one image arm/v7.
Best Regards, Michel.
Yep that is the issue -- it pulls the v7. When I specify the v6 it runs as expected. Thanks! As a docker novice, isn't there a way to pull the correct architecture automatically?
FYI for anyone looking here is a working docker compose file:
services: rtspstreamer: container_name: rtspstreamer privileged: false restart: unless-stopped image: mpromonet/v4l2rtspserver:latest-arm32v6 command: -F3 -v #command line parameters devices: - /dev/video0:/dev/video0 ports: - "8554:8554" #RTSP