Skip to content

Commit

Permalink
Merge pull request #55 from linuxserver/3.19
Browse files Browse the repository at this point in the history
Rebase to Alpine 3.19
  • Loading branch information
aptalca authored Feb 13, 2024
2 parents dd6e01e + 2cbf019 commit bebe388
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FROM ghcr.io/linuxserver/unrar:latest as unrar

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

# set version label
ARG BUILD_DATE
Expand All @@ -28,7 +28,6 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
libmediainfo \
libssl1.1 \
libxslt \
python3 && \
echo "**** install sickchill ****" && \
Expand All @@ -39,7 +38,7 @@ RUN \
pip install -U --no-cache-dir \
pip \
wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \
certifi \
sickchill=="${SICKCHILL_VERSION}" && \
echo "**** clean up ****" && \
Expand Down
5 changes: 2 additions & 3 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

FROM ghcr.io/linuxserver/unrar:arm64v8-latest as unrar

FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19

# set version label
ARG BUILD_DATE
Expand All @@ -28,7 +28,6 @@ RUN \
echo "**** install packages ****" && \
apk add --no-cache \
libmediainfo \
libssl1.1 \
libxslt \
python3 && \
echo "**** install sickchill ****" && \
Expand All @@ -39,7 +38,7 @@ RUN \
pip install -U --no-cache-dir \
pip \
wheel && \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.18/ \
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \
certifi \
sickchill=="${SICKCHILL_VERSION}" && \
echo "**** clean up ****" && \
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ services:
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/data:/config
- /path/to/sickchill/config:/config
- /path/to/data:/downloads
- /path/to/data:/tv
ports:
Expand All @@ -95,7 +95,7 @@ docker run -d \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 8081:8081 \
-v /path/to/data:/config \
-v /path/to/sickchill/config:/config \
-v /path/to/data:/downloads \
-v /path/to/data:/tv \
--restart unless-stopped \
Expand All @@ -112,7 +112,7 @@ Containers are configured using parameters passed at runtime (such as those abov
| `-e PUID=1000` | for UserID - see below for explanation |
| `-e PGID=1000` | for GroupID - see below for explanation |
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
| `-v /config` | this will store config on the docker host |
| `-v /config` | Persistent config files |
| `-v /downloads` | this will store any downloaded data on the docker host |
| `-v /tv` | this will allow sickchill to view what you already have |

Expand Down Expand Up @@ -277,6 +277,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **13.02.24:** - Rebase to Alpine 3.19.
* **07.10.23:** - Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar).
* **10.08.23:** - Bump unrar to 6.2.10.
* **12.07.23:** - Rebase to alpine 3.18.
Expand Down
3 changes: 2 additions & 1 deletion readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ available_architectures:
param_container_name: "{{ project_name }}"
param_usage_include_vols: true
param_volumes:
- {vol_path: "/config", vol_host_path: "/path/to/data", desc: "this will store config on the docker host"}
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" }
- {vol_path: "/downloads", vol_host_path: "/path/to/data", desc: "this will store any downloaded data on the docker host"}
- {vol_path: "/tv", vol_host_path: "/path/to/data", desc: "this will allow sickchill to view what you already have"}
param_usage_include_env: true
Expand All @@ -29,6 +29,7 @@ app_setup_block: |
Web interface is at `<your ip>:8081` , set paths for downloads, tv-shows to match docker mappings via the webui.
# changelog
changelogs:
- {date: "13.02.24:", desc: "Rebase to Alpine 3.19."}
- {date: "07.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
- {date: "10.08.23:", desc: "Bump unrar to 6.2.10."}
- {date: "12.07.23:", desc: "Rebase to alpine 3.18."}
Expand Down

0 comments on commit bebe388

Please sign in to comment.