1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-22 05:09:36 +02:00

update owncast

This commit is contained in:
kev 2023-06-20 17:49:14 +08:00
parent beec3b125a
commit 9cb52ac6cd
3 changed files with 0 additions and 33 deletions

View File

@ -1,8 +1,6 @@
owncast owncast
======= =======
> ⚠️ THIS PROJECT WAS MOVED TO: https://github.com/EasyPi/docker-owncast
[Owncast][1] is a self-hosted live video and web chat server for use with [Owncast][1] is a self-hosted live video and web chat server for use with
existing popular broadcasting software. Point your live stream at a server you existing popular broadcasting software. Point your live stream at a server you
personally control and regain ownership over your content. personally control and regain ownership over your content.

View File

@ -1,20 +0,0 @@
#
# Dockerfile for owncast-arm
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
ARG OWNCAST_VERSION=0.0.11
ARG OWNCAST_FILE=owncast-${OWNCAST_VERSION}-linux-arm64.zip
ARG OWNCAST_URL=https://github.com/owncast/owncast/releases/download/v${OWNCAST_VERSION}/${OWNCAST_FILE}
WORKDIR /app
RUN set -xe \
&& apk add --no-cache curl ffmpeg ffmpeg-libs gcompat \
&& curl -sSLO ${OWNCAST_URL} \
&& unzip ${OWNCAST_FILE} \
&& rm ${OWNCAST_FILE}
CMD ["/app/owncast"]

View File

@ -1,11 +0,0 @@
version: "3.8"
services:
owncast:
image: easypi/owncast-arm
command: /app/owncast -backupdir=/data -database=/data/database.db
ports:
- "1935:1935"
- "8080:8080"
volumes:
- ./data:/data
restart: unless-stopped