1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:31 +02:00
dockerfiles/v4l2rtspserver/docker-compose.yml

12 lines
243 B
YAML
Raw Normal View History

2020-05-22 15:46:42 +08:00
version: "3.8"
services:
v4l2rtspserver:
image: mpromonet/v4l2rtspserver
2021-10-13 16:45:14 +08:00
command: -v -P554 -G640x480x5 -ulive /dev/video0
2020-05-22 15:46:42 +08:00
ports:
- "554:554"
devices:
- /dev/video0
2021-10-13 16:45:14 +08:00
privileged: true
2020-05-22 15:46:42 +08:00
restart: unless-stopped