Skip to content

Commit

Permalink
Merge pull request #53 from thespad/3.20
Browse files Browse the repository at this point in the history
Rebase to 3.20
  • Loading branch information
thespad authored May 26, 2024
2 parents fd83f1d + c52bab1 commit 3d78050
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:3.19
FROM ghcr.io/linuxserver/baseimage-alpine:3.20

# set version label
ARG BUILD_DATE
Expand All @@ -11,6 +11,7 @@ LABEL maintainer="thespad"
LABEL org.opencontainers.image.source="https://github.com/thespad/docker-get_iplayer"
LABEL org.opencontainers.image.url="https://github.com/thespad/docker-get_iplayer"
LABEL org.opencontainers.image.description="A BBC iPlayer/BBC Sounds Indexing Tool and PVR"
LABEL org.opencontainers.image.authors="thespad"

ENV GETIPLAYER_PROFILE=/config/.get_iplayer
ENV PATH="${PATH:+${PATH}:}/app/get_iplayer"
Expand Down Expand Up @@ -64,6 +65,7 @@ RUN \
"https://dot.net/v1/dotnet-install.sh" && \
chmod +x /tmp/dotnet-install.sh && \
/tmp/dotnet-install.sh --channel 6.0 --runtime dotnet --os linux-musl --install-dir /usr/share/dotnet && \
printf "Version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
apk del --purge \
build-dependencies && \
rm -rf \
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
[![GitHub Stars](https://img.shields.io/github/stars/thespad/docker-get_iplayer.svg?color=26689A&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/thespad/docker-get_iplayer)
[![Docker Stars](https://img.shields.io/docker/stars/thespad/get_iplayer.svg?color=26689A&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/thespad/get_iplayer)

[![ci](https://img.shields.io/github/actions/workflow/status/thespad/docker-get_iplayer/call-check-and-release.yml?branch=main&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Upstream%20Updates)](https://github.com/thespad/docker-get_iplayer/actions/workflows/call-check-and-release.yml)
[![ci](https://img.shields.io/github/actions/workflow/status/thespad/docker-get_iplayer/call-baseimage-update.yml?branch=main&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Baseimage%20Updates)](https://github.com/thespad/docker-get_iplayer/actions/workflows/call-baseimage-update.yml)
[![ci](https://img.shields.io/github/actions/workflow/status/thespad/docker-get_iplayer/call-build-image.yml?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Build%20Image)](https://github.com/thespad/docker-get_iplayer/actions/workflows/call-build-image.yml)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/thespad/docker-get_iplayer/call-check-and-release.yml?branch=main&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Upstream%20Updates)](https://github.com/thespad/docker-get_iplayer/actions/workflows/call-check-and-release.yml)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/thespad/docker-get_iplayer/call-baseimage-update.yml?branch=main&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Baseimage%20Updates)](https://github.com/thespad/docker-get_iplayer/actions/workflows/call-baseimage-update.yml)
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/thespad/docker-get_iplayer/call-build-image.yml?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Build%20Image)](https://github.com/thespad/docker-get_iplayer/actions/workflows/call-build-image.yml)

[get_iplayer](https://github.com/get-iplayer/get_iplayer/) is a BBC iPlayer/BBC Sounds Indexing Tool and PVR

Expand Down Expand Up @@ -42,7 +42,6 @@ Compatible with docker-compose v2 schemas.

```yaml
---
version: "2.1"
services:
get_iplayer:
image: ghcr.io/thespad/get_iplayer
Expand All @@ -55,8 +54,8 @@ services:
- BASEURL= #optional
- ENABLEIMPORT= #optional
volumes:
- </path/to/appdata/config>:/config
- </path/to/appdata/downloads>:/downloads
- /path/to/get_iplayer/config:/config
- /path/to/downloads:/downloads
ports:
- 1935:1935
restart: unless-stopped
Expand All @@ -74,8 +73,8 @@ docker run -d \
-e BASEURL= `#optional` \
-e ENABLEIMPORT= `#optional` \
-p 1935:1935 \
-v </path/to/appdata/config>:/config \
-v </path/to/appdata/downloads>:/downloads \
-v /path/to/get_iplayer/config:/config \
-v /path/to/downloads:/downloads \
--restart unless-stopped \
ghcr.io/thespad/get_iplayer
```
Expand Down Expand Up @@ -172,6 +171,7 @@ docker build \

## Versions

* **26.05.24:** - Rebase to Alpine 3.20.
* **11.02.24:** - Build AtomicParsley from source.
* **30.12.23:** - Rebase to Alpine 3.19.
* **14.05.23:** - Rebase to Alpine 3.18. Drop support for armhf.
Expand Down

0 comments on commit 3d78050

Please sign in to comment.