From d1c97843f4453c662ba19f29767af15982a2201d Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Wed, 30 Dec 2020 15:53:25 -0700 Subject: [PATCH] v2.0.0 with Peertube v3.0.0 RC1 --- CHANGELOG | 2 ++ CloudronManifest.json | 10 +++++++++- Dockerfile | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7848743..7ea1cfe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -51,3 +51,5 @@ [1.2.0] * Update ffmpeg to 4.3 +[1.2.0] +* Update to Peertube v3.0.0 RC1 diff --git a/CloudronManifest.json b/CloudronManifest.json index cf047e7..c17cd7c 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -1,5 +1,5 @@ { - "version": "1.2.0", + "version": "2.0.0", "id": "org.joinpeertube.cloudronapp", "title": "PeerTube", "author": "PeerTube developers", @@ -10,6 +10,14 @@ "icon": "file://logo.png", "healthCheckPath": "/", "httpPort": 9000, + "tcpPorts": { + "RTMP_PORT": { + "title": "RTMP Port", + "description": "RTMP Port for livestreaming", + "defaultValue": 1935, + "containerPort": 1935 + } + }, "addons": { "localstorage": {}, "postgresql": {}, diff --git a/Dockerfile b/Dockerfile index 991f85e..46f6542 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN apt-get -y update && \ RUN curl -sL https://github.com/mikefarah/yq/releases/download/3.2.1/yq_linux_amd64 -o /usr/bin/yq && \ chmod +x /usr/bin/yq -ARG VERSION=2.4.0 +ARG VERSION=3.0.0-rc.1 # install peertube. the chown is required for some reason for ffmpeg. it fails with EROFS without it when transcoding # the transcoding patch is at https://github.com/Chocobozzz/PeerTube/pull/3198