Compare commits

...
6 Commits
80 ... 95
Author SHA1 Message Date
sparklyballsandGitHub 2a0842dd06 Merge pull request #21 from linuxserver/develop_readme_consistent_urls
Develop readme consistent urls
2018-02-24 19:19:06 +00:00
sparklyballsandGitHub 34b89a5840 Update README.md 2018-02-24 18:16:23 +00:00
sparklyballs 9bb26026ab refine README note about dev branch 2018-02-24 17:54:01 +00:00
sparklyballs 7f53837284 dev branch added 1st draft README and use json for downlaod url 2018-02-24 17:48:51 +00:00
sparklyballsandGitHub 5db7de8d90 Merge pull request #20 from linuxserver/repo_change
repo changed owner
2018-02-06 23:00:47 +00:00
sparklyballs 1f933b0a4f repo changed owner 2018-02-06 22:43:51 +00:00
2 changed files with 29 additions and 7 deletions
+15 -7
View File
@@ -6,28 +6,36 @@ ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
# environment settings
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
ARG RADARR_BRANCH="develop"
ENV XDG_CONFIG_HOME="/config/xdg"
RUN \
echo "**** install jq ****" && \
apt-get update && \
apt-get install -y \
jq && \
echo "**** install radarr ****" && \
radarr_tag=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \
| awk '/tag_name/{print $4;exit}' FS='[""]') && \
radarr_url=$(curl "http://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \
| jq -r '.[0].url') && \
mkdir -p \
/opt/radarr && \
curl -o \
/tmp/radar.tar.gz -L \
"https://github.com/galli-leo/Radarr/releases/download/${radarr_tag}/Radarr.develop.${radarr_tag#v}.linux.tar.gz" && \
"${radarr_url}" && \
tar ixzf \
/tmp/radar.tar.gz -C \
/opt/radarr --strip-components=1 && \
echo "**** clean up ****" && \
rm -rf \
/tmp/*
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
# add local files
# add local files
COPY /root /
# ports and volumes
# ports and volumes
EXPOSE 7878
VOLUME /config /downloads /movies
+14
View File
@@ -34,6 +34,18 @@ docker create \
linuxserver/radarr
```
You can choose between ,using tags, various branch versions of radarr, no tag is required to remain on the main branch.
Add one of the tags, if required, to the linuxserver/radarr line of the run/create command in the following format, linuxserver/radarr:nightly
The nightly branch and master branch can from time to time be the same version.
HOWEVER , USE THE NIGHTLY BRANCH AT YOUR OWN PERIL !!!!!!!!!
#### Tags
+ **nightly**
## Parameters
`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.
@@ -87,6 +99,8 @@ Access the webui at `<your-ip>:7878`, for more information check out [Radarr][ap
## Versions
+ **24.02.18:** Add nightly branch.
+ **06.02.18:** Radarr repo changed owner.
+ **15.12.17:** Fix continuation lines.
+ **17.04.17:** Switch to using inhouse mono baseimage, adds python also.
+ **13.04.17:** Switch to official mono repository.