Closed kluoyun closed 2 weeks ago
The image path is mjpg_streamer_images, but the mjpg_streamer startup command uses webcam_images, which causes mjpg_streamer to fail to start.
Another solution is to modify the Dockerfile's COPY ./mjpg_streamer_images/ ./mjpg_streamer_images/ to COPY ./mjpg_streamer_images/ ./webcam_images/.
COPY ./mjpg_streamer_images/ ./mjpg_streamer_images/
COPY ./mjpg_streamer_images/ ./webcam_images/
Thank you!
The image path is mjpg_streamer_images, but the mjpg_streamer startup command uses webcam_images, which causes mjpg_streamer to fail to start.
Another solution is to modify the Dockerfile's
COPY ./mjpg_streamer_images/ ./mjpg_streamer_images/
toCOPY ./mjpg_streamer_images/ ./webcam_images/
.