From daa1d76e8f115e02871cccdb2d0463866dcf2be0 Mon Sep 17 00:00:00 2001 From: kev Date: Thu, 21 Jul 2022 17:51:51 +0800 Subject: [PATCH] add restreamer --- README.md | 1 + restreamer/README.md | 10 ++++++++++ restreamer/docker-compose.yml | 12 ++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 restreamer/README.md create mode 100644 restreamer/docker-compose.yml diff --git a/README.md b/README.md index a3f789f..9e6e7c2 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,7 @@ A collection of delicious docker recipes. - [x] prosody/prosody - [x] redis/redis-stack - [x] registry +- [x] datarhei/restreamer - [x] restic/rest-server - [x] rocker/rstudio - [x] rocket.chat diff --git a/restreamer/README.md b/restreamer/README.md new file mode 100644 index 0000000..82e67cc --- /dev/null +++ b/restreamer/README.md @@ -0,0 +1,10 @@ +restreamer +========== + +[Restreamer][1] is a complete streaming server solution for self-hosting. It has +a visually appealing user interface and no ongoing license costs. Upload your +live stream to YouTube, Twitch, Facebook, Vimeo, or other streaming solutions +like Wowza. Receive video data from OBS and publish it with the RTMP and SRT +server. + +[1]: https://github.com/datarhei/restreamer diff --git a/restreamer/docker-compose.yml b/restreamer/docker-compose.yml new file mode 100644 index 0000000..9384210 --- /dev/null +++ b/restreamer/docker-compose.yml @@ -0,0 +1,12 @@ +version: "3.8" +services: + restreamer: + image: datarhei/restreamer:rpi-latest + ports: + - "1935:1935" + - "8080:8080" + volumes: + - ./data/config:/core/config + - ./data/data:/core/data + privileged: true + restart: unless-stopped