Interface for viewing and managing media streams of various formats
Leveraging the power of MediaMTX
Screen.Recording.2023-12-21.at.2.30.05.PM.mov
docker-compose
version: "3.4"
services:
mediamtx:
image: bluenviron/mediamtx
container_name: mediamtx
restart: unless-stopped
environment:
- MTX_API=yes
- MTX_APIADDRESS=:9997
- MTX_RECORD=yes
volumes:
- ${MEDIAMTX_RECORDINGS_DIR}:/recordings
networks:
- mtx
ports:
- 8554:8554
- 8890:8890/udp
- 1935:1935
- 8888:8888
- 8889:8889
- 9997:9997
mediamtx-connect:
image: bcanfield/mediamtx-connect
container_name: mediamtx-connect
restart: unless-stopped
volumes:
- ${MEDIAMTX_RECORDINGS_DIR}:/recordings
networks:
- mtx
ports:
- 3000:3000
networks:
mtx:
name: mtx