You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
598 B
21 lines
598 B
version: '3.7'
|
|
|
|
# All keys here are for dev instance only, do not put prod keys here
|
|
# To override and use inventory from prod use .env file
|
|
|
|
services:
|
|
camtiler:
|
|
restart: always
|
|
network_mode: host
|
|
build:
|
|
context: .
|
|
entrypoint: /app/camtiler.py
|
|
command: http://127.0.0.1:8080?action=stream http://127.0.0.2:8080?action=stream http://127.0.0.3:1234
|
|
|
|
mjpg-streamer:
|
|
network_mode: host
|
|
restart: always
|
|
image: kvaps/mjpg-streamer
|
|
devices:
|
|
- /dev/video0
|
|
command: -i "/usr/lib64/input_uvc.so -y -d /dev/video0 -r 1280x720 -f 30" -o "output_http.so"
|
|
|