mirror of
https://git.cloudron.io/cloudron/peertube-app.git
synced 2024-10-31 22:28:56 +00:00
v2.0.0 with Peertube v3.0.0 RC1
This commit is contained in:
parent
66a181fff9
commit
d1c97843f4
3 changed files with 12 additions and 2 deletions
|
@ -51,3 +51,5 @@
|
|||
[1.2.0]
|
||||
* Update ffmpeg to 4.3
|
||||
|
||||
[1.2.0]
|
||||
* Update to Peertube v3.0.0 RC1
|
||||
|
|
|
@ -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": {},
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue