1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/v4l2rtspserver/docker-compose.yml

12 lines
243 B
YAML
Raw Normal View History

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