From 9cb52ac6cde22647d99f905fee2354703642be28 Mon Sep 17 00:00:00 2001 From: kev Date: Tue, 20 Jun 2023 17:49:14 +0800 Subject: [PATCH] update owncast --- owncast/README.md | 2 -- owncast/arm64/Dockerfile | 20 -------------------- owncast/arm64/docker-compose.yml | 11 ----------- 3 files changed, 33 deletions(-) delete mode 100644 owncast/arm64/Dockerfile delete mode 100644 owncast/arm64/docker-compose.yml diff --git a/owncast/README.md b/owncast/README.md index 73083ea..ead0a88 100644 --- a/owncast/README.md +++ b/owncast/README.md @@ -1,8 +1,6 @@ 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 existing popular broadcasting software. Point your live stream at a server you personally control and regain ownership over your content. diff --git a/owncast/arm64/Dockerfile b/owncast/arm64/Dockerfile deleted file mode 100644 index b2fa128..0000000 --- a/owncast/arm64/Dockerfile +++ /dev/null @@ -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"] diff --git a/owncast/arm64/docker-compose.yml b/owncast/arm64/docker-compose.yml deleted file mode 100644 index e9817c1..0000000 --- a/owncast/arm64/docker-compose.yml +++ /dev/null @@ -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