Compare commits

...
Author SHA1 Message Date
LinuxServer-CI dbfc4e82e4 Bot Updating Package Versions 2019-03-22 15:53:29 +00:00
LinuxServer-CI 497ba114d3 Bot Updating Package Versions 2019-03-19 10:27:36 +00:00
LinuxServer-CI 73db3c615b Bot Updating Package Versions 2019-03-08 13:52:06 -05:00
LinuxServer-CI e47f12b6dd Bot Updating Templated Files 2019-03-08 15:51:31 +00:00
LinuxServer-CI 2858a95438 Bot Updating Templated Files 2019-03-01 15:51:38 +00:00
LinuxServer-CI f166e87bc5 Bot Updating Package Versions 2019-02-24 00:29:05 +00:00
LinuxServer-CI 2acc6f5529 Bot Updating Package Versions 2019-02-15 15:55:45 +00:00
LinuxServer-CI 84ffb4b63a Bot Updating Templated Files 2019-02-15 15:51:42 +00:00
LinuxServer-CI 8f4aede79c Bot Updating Templated Files 2019-02-08 15:51:44 +00:00
j0nnymoeandGitHub d7034dd900 Merge pull request #35 from linuxserver/nightly-version
fix radarr version arg, switch to https for download url
2019-01-30 21:32:50 +00:00
aptalca d06182a46e ignore curl cert errors until we figure out issue with builders 2019-01-30 16:21:19 -05:00
aptalca 9de23e5083 fix radarr version arg, switch to https for download url 2019-01-30 15:10:42 -05:00
LinuxServer-CI 9503c75d0e Bot Updating Package Versions 2019-01-30 19:54:55 +00:00
LinuxServer-CI 3e8a7b8ba0 Bot Updating Templated Files 2019-01-30 14:50:54 -05:00
aptalcaandGitHub 2159faca8c Merge pull request #33 from linuxserver/pipeline-nightly
Pipeline nightly
2019-01-30 14:50:02 -05:00
Ryan KubaandGitHub 7979057fb0 Merge branch 'nightly' into pipeline-nightly 2019-01-21 00:51:17 -08:00
thelamer e5c74cce45 updating branch with current pipeline build logic in prep for PR 2019-01-20 20:27:40 -08:00
thelamer 8bf4376134 bad json path for version endpoint 2018-09-09 22:15:57 -07:00
thelamer 295c24752e bad variable in credentials for live build server 2018-09-09 22:12:44 -07:00
thelamer a0d8b5b656 adding nightly branch to pipeline builds 2018-09-09 22:11:16 -07:00
sparklyballs 732f9294ed change baseimages to new ubuntu style 2018-03-14 18:44:09 +00:00
sparklyballsandGitHub 4d482fa103 Merge pull request #22 from linuxserver/develop
Develop
2018-02-24 18:15:04 +00:00
sparklyballs d62defbf12 add variable to choose branch 2018-02-24 17:57:45 +00:00
sparklyballs 0c406a6ed8 first push up of develop branch 2018-02-24 16:36:44 +00:00
7 changed files with 773 additions and 204 deletions
+6 -5
View File
@@ -9,6 +9,7 @@ LABEL maintainer="sparklyballs"
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
ARG RADARR_BRANCH="nightly"
ENV XDG_CONFIG_HOME="/config/xdg"
RUN \
@@ -17,12 +18,12 @@ RUN \
apt-get install -y \
jq && \
echo "**** install radarr ****" && \
if [ -z ${RADARR_RELEASE+x} ]; then \
RADARR_RELEASE=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \
| jq -r '.[0] | .tag_name'); \
if [ -z ${RADARR_RELEASE}+x} ]; then \
RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \
| jq -r '.[0].version'); \
fi && \
radarr_url=$(curl -s https://api.github.com/repos/Radarr/Radarr/releases/tags/"${RADARR_RELEASE}" \
|jq -r '.assets[].browser_download_url' |grep linux) && \
radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \
| select(.version == \"${RADARR_RELEASE}\") | .url") && \
mkdir -p \
/opt/radarr && \
curl -o \
+6 -4
View File
@@ -1,4 +1,5 @@
FROM lsiobase/mono.arm64:xenial
# Add qemu to build on x86_64 systems
COPY qemu-aarch64-static /usr/bin
@@ -11,6 +12,7 @@ LABEL maintainer="sparklyballs"
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
ARG RADARR_BRANCH="nightly"
ENV XDG_CONFIG_HOME="/config/xdg"
RUN \
@@ -20,11 +22,11 @@ RUN \
jq && \
echo "**** install radarr ****" && \
if [ -z ${RADARR_RELEASE+x} ]; then \
RADARR_RELEASE=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \
| jq -r '.[0] | .tag_name'); \
RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \
| jq -r '.[0].version'); \
fi && \
radarr_url=$(curl -s https://api.github.com/repos/Radarr/Radarr/releases/tags/"${RADARR_RELEASE}" \
|jq -r '.assets[].browser_download_url' |grep linux) && \
radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \
| select(.version == \"${RADARR_RELEASE}\") | .url") && \
mkdir -p \
/opt/radarr && \
curl -o \
+6 -4
View File
@@ -1,4 +1,5 @@
FROM lsiobase/mono.armhf:xenial
# Add qemu to build on x86_64 systems
COPY qemu-arm-static /usr/bin
@@ -11,6 +12,7 @@ LABEL maintainer="sparklyballs"
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
ARG RADARR_BRANCH="nightly"
ENV XDG_CONFIG_HOME="/config/xdg"
RUN \
@@ -20,11 +22,11 @@ RUN \
jq && \
echo "**** install radarr ****" && \
if [ -z ${RADARR_RELEASE+x} ]; then \
RADARR_RELEASE=$(curl -sX GET "https://api.github.com/repos/Radarr/Radarr/releases" \
| jq -r '.[0] | .tag_name'); \
RADARR_RELEASE=$(curl -k "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" \
| jq -r '.[0].version'); \
fi && \
radarr_url=$(curl -s https://api.github.com/repos/Radarr/Radarr/releases/tags/"${RADARR_RELEASE}" \
|jq -r '.assets[].browser_download_url' |grep linux) && \
radarr_url=$(curl -k -sX GET "https://radarr.aeonlucid.com/v1/update/${RADARR_BRANCH}/changes?os=linux" |jq -r ".[] \
| select(.version == \"${RADARR_RELEASE}\") | .url") && \
mkdir -p \
/opt/radarr && \
curl -o \
Vendored
+325 -171
View File
@@ -2,28 +2,30 @@ pipeline {
agent {
label 'X86-64-MULTI'
}
// Configuraiton for the variables used for this specific repo
// Input to determine if this is a package check
parameters {
string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK')
}
// Configuration for the variables used for this specific repo
environment {
EXT_GIT_BRANCH = 'master'
EXT_USER = 'Radarr'
EXT_REPO = 'Radarr'
BUILDS_DISCORD=credentials('build_webhook_url')
GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab')
JSON_URL = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux'
JSON_PATH = '.[0].version'
BUILD_VERSION_ARG = 'RADARR_RELEASE'
LS_USER = 'linuxserver'
LS_REPO = 'docker-radarr'
CONTAINER_NAME = 'radarr'
DOCKERHUB_IMAGE = 'linuxserver/radarr'
DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr'
PR_DOCKERHUB_IMAGE = 'lspipepr/radarr'
BUILDS_DISCORD = credentials('build_webhook_url')
GITHUB_TOKEN = credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab')
DIST_IMAGE = 'ubuntu'
DIST_TAG = 'xenial'
DIST_PACKAGES = 'none'
MULTIARCH='true'
CI='true'
CI_WEB='true'
CI_PORT='7878'
CI_SSL='false'
CI_DELAY='60'
CI_DELAY='120'
CI_DOCKERENV='TZ=US/Pacific'
CI_AUTH='user:password'
CI_WEBPATH=''
@@ -33,11 +35,12 @@ pipeline {
stage("Set ENV Variables base"){
steps{
script{
env.EXIT_STATUS = ''
env.LS_RELEASE = sh(
script: '''curl -s https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/latest | jq -r '. | .tag_name' ''',
script: '''curl -s https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases | jq -r 'first(.[] | select(.prerelease == true)) | .tag_name' ''',
returnStdout: true).trim()
env.LS_RELEASE_NOTES = sh(
script: '''git log -1 --pretty=%B | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''',
script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''',
returnStdout: true).trim()
env.GITHUB_DATE = sh(
script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''',
@@ -72,68 +75,78 @@ pipeline {
/* #######################
Package Version Tagging
####################### */
// If this does not track package tags
stage("Set Package tag None"){
// Grab the current package versions in Git to determine package tag
stage("Set Package tag"){
steps{
script{
env.PACKAGE_TAG = 'none'
env.PACKAGE_TAG = sh(
script: '''#!/bin/bash
if [ -e package_versions.txt ] ; then
cat package_versions.txt | md5sum | cut -c1-8
else
echo none
fi''',
returnStdout: true).trim()
}
}
}
/* ########################
External Release Tagging
######################## */
// If this is a devel github release use the first in an array from github to determine the ext tag
stage("Set ENV github_devel"){
// If this is a custom json endpoint parse the return to get external tag
stage("Set ENV custom_json"){
steps{
script{
env.EXT_RELEASE = sh(
script: '''curl -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq -r '.[0] | .tag_name' ''',
script: '''curl -s ${JSON_URL} | jq -r ". | ${JSON_PATH}" ''',
returnStdout: true).trim()
env.RELEASE_LINK = env.JSON_URL
}
}
}
// If this is a stable or devel github release generate the link for the build message
stage("Set ENV github_link"){
steps{
script{
env.RELEASE_LINK = 'https://github.com/' + env.EXT_USER + '/' + env.EXT_REPO + '/releases/tag/' + env.EXT_RELEASE
}
}
// Sanitize the release tag and strip illegal docker or github characters
stage("Sanitize tag"){
steps{
script{
env.EXT_RELEASE_CLEAN = sh(
script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''',
returnStdout: true).trim()
}
}
}
// If this is a master build use live docker endpoints
// If this is a nightly build use live docker endpoints
stage("Set ENV live build"){
when {
branch "master"
branch "nightly"
environment name: 'CHANGE_ID', value: ''
}
steps {
script{
env.IMAGE = env.DOCKERHUB_IMAGE
if (env.MULTIARCH == 'true') {
env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '|arm32v6-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER
env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER
} else {
env.CI_TAGS = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER
env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER
}
env.META_TAG = env.EXT_RELEASE + '-ls' + env.LS_TAG_NUMBER
env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER
}
}
}
// If this is a dev build use dev docker endpoints
stage("Set ENV dev build"){
when {
not {branch "master"}
not {branch "nightly"}
environment name: 'CHANGE_ID', value: ''
}
steps {
script{
env.IMAGE = env.DEV_DOCKERHUB_IMAGE
if (env.MULTIARCH == 'true') {
env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v6-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
} else {
env.CI_TAGS = env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
}
env.META_TAG = env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/'
}
}
@@ -147,20 +160,20 @@ pipeline {
script{
env.IMAGE = env.PR_DOCKERHUB_IMAGE
if (env.MULTIARCH == 'true') {
env.CI_TAGS = 'amd64-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v6-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST
env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST
} else {
env.CI_TAGS = env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST
env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST
}
env.META_TAG = env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST
env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/'
}
}
}
// Use helper container to render a readme from the template if needed
stage('Update-README') {
// Use helper containers to render templated files
stage('Update-Templates') {
when {
branch "master"
branch "nightly"
environment name: 'CHANGE_ID', value: ''
expression {
env.CONTAINER_NAME != null
@@ -168,126 +181,229 @@ pipeline {
}
steps {
sh '''#! /bin/bash
set -e
TEMPDIR=$(mktemp -d)
docker pull linuxserver/jenkins-builder:latest
docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest
docker pull linuxserver/doc-builder:latest
docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest
if [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ]; then
git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO}
cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/${LS_REPO}/
cd ${TEMPDIR}/${LS_REPO}/
git --git-dir ${TEMPDIR}/${LS_REPO}/.git add README.md
git --git-dir ${TEMPDIR}/${LS_REPO}/.git commit -m 'Bot Updating README from template'
git --git-dir ${TEMPDIR}/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest
if [ "$(md5sum ${TEMPDIR}/${LS_REPO}/Jenkinsfile | awk '{ print $1 }')" != "$(md5sum Jenkinsfile | awk '{ print $1 }')" ] || [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ]; then
mkdir -p ${TEMPDIR}/repo
git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO}
git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git checkout -f nightly
cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/repo/${LS_REPO}/
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/
cd ${TEMPDIR}/repo/${LS_REPO}/
git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md
git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git commit -m 'Bot Updating Templated Files'
git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
else
echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
fi
mkdir -p ${TEMPDIR}/gitbook
git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation
if [ "${BRANCH_NAME}" = "master" ] && [ ! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md ] || [ "$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" ]; then
cp ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/
cd ${TEMPDIR}/gitbook/docker-documentation/
git add images/docker-${CONTAINER_NAME}.md
git commit -m 'Bot Updating Templated Files'
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all
fi
rm -Rf ${TEMPDIR}'''
script{
env.README_UPDATED = sh(
env.FILES_UPDATED = sh(
script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''',
returnStdout: true).trim()
}
}
}
// Exit the build if the Readme was just updated
stage('README-exit') {
// Exit the build if the Templated files were just updated
stage('Template-exit') {
when {
branch "master"
branch "nightly"
environment name: 'CHANGE_ID', value: ''
environment name: 'README_UPDATED', value: 'true'
environment name: 'FILES_UPDATED', value: 'true'
expression {
env.CONTAINER_NAME != null
}
}
steps {
script{
env.CI_URL = 'README_UPDATE'
env.RELEASE_LINK = 'README_UPDATE'
currentBuild.rawBuild.result = Result.ABORTED
throw new hudson.AbortException('ABORTED_README')
env.EXIT_STATUS = 'ABORTED'
}
}
}
/* ###############
Build Container
############### */
// Build Docker container for push to LS Repo
stage('Build-Single') {
when {
environment name: 'MULTIARCH', value: 'false'
}
steps {
sh "docker build --no-cache -t ${IMAGE}:${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
}
}
// Build MultiArch Docker containers for push to LS Repo
stage('Build-Multi') {
when {
environment name: 'MULTIARCH', value: 'true'
}
parallel {
stage('Build X86') {
steps {
sh "docker build --no-cache -t ${IMAGE}:amd64-${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
}
}
stage('Build ARMHF') {
agent {
label 'ARMHF'
}
steps {
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
]
]) {
echo 'Logging into DockerHub'
sh '''#! /bin/bash
echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
'''
sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static -o qemu-arm-static"
sh "chmod +x qemu-*"
sh "docker build --no-cache -f Dockerfile.armhf -t ${IMAGE}:arm32v6-${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh "docker tag ${IMAGE}:arm32v6-${META_TAG} lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}"
sh "docker push lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}"
}
}
}
stage('Build ARM64') {
agent {
label 'ARM64'
}
steps {
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
]
]) {
echo 'Logging into DockerHub'
sh '''#! /bin/bash
echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
'''
sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static -o qemu-aarch64-static"
sh "chmod +x qemu-*"
sh "docker build --no-cache -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
}
}
}
}
}
// Build Docker container for push to LS Repo
stage('Build-Single') {
when {
environment name: 'MULTIARCH', value: 'false'
environment name: 'EXIT_STATUS', value: ''
}
steps {
sh "docker build --no-cache -t ${IMAGE}:${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
}
}
// Build MultiArch Docker containers for push to LS Repo
stage('Build-Multi') {
when {
environment name: 'MULTIARCH', value: 'true'
environment name: 'EXIT_STATUS', value: ''
}
parallel {
stage('Build X86') {
steps {
sh "docker build --no-cache -t ${IMAGE}:amd64-${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
}
}
stage('Build ARMHF') {
agent {
label 'ARMHF'
}
steps {
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
]
]) {
echo 'Logging into DockerHub'
sh '''#! /bin/bash
echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
'''
sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static -o qemu-arm-static"
sh "chmod +x qemu-*"
sh "docker build --no-cache -f Dockerfile.armhf -t ${IMAGE}:arm32v6-${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh "docker tag ${IMAGE}:arm32v6-${META_TAG} lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}"
sh "docker push lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}"
sh '''docker rmi \
${IMAGE}:arm32v6-${META_TAG} \
lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} '''
}
}
}
stage('Build ARM64') {
agent {
label 'ARM64'
}
steps {
withCredentials([
[
$class: 'UsernamePasswordMultiBinding',
credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207',
usernameVariable: 'DOCKERUSER',
passwordVariable: 'DOCKERPASS'
]
]) {
echo 'Logging into DockerHub'
sh '''#! /bin/bash
echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
'''
sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static -o qemu-aarch64-static"
sh "chmod +x qemu-*"
sh "docker build --no-cache -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
sh '''docker rmi \
${IMAGE}:arm64v8-${META_TAG} \
lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} '''
}
}
}
}
}
// Take the image we just built and dump package versions for comparison
stage('Update-packages') {
when {
branch "nightly"
environment name: 'CHANGE_ID', value: ''
environment name: 'EXIT_STATUS', value: ''
}
steps {
sh '''#! /bin/bash
set -e
TEMPDIR=$(mktemp -d)
if [ "${MULTIARCH}" == "true" ]; then
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
else
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
fi
if [ "${DIST_IMAGE}" == "alpine" ]; then
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
apk info > packages && \
apk info -v > versions && \
paste -d " " packages versions > /tmp/package_versions.txt && \
chmod 777 /tmp/package_versions.txt'
elif [ "${DIST_IMAGE}" == "ubuntu" ]; then
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
apt list -qq --installed | cut -d" " -f1-2 > /tmp/package_versions.txt && \
chmod 777 /tmp/package_versions.txt'
fi
NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )
echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github"
if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then
git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO}
git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f nightly
cp ${TEMPDIR}/package_versions.txt ${TEMPDIR}/${LS_REPO}/
cd ${TEMPDIR}/${LS_REPO}/
wait
git add package_versions.txt
git commit -m 'Bot Updating Package Versions'
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER}
echo "Package tag updated, stopping build process"
else
echo "false" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER}
echo "Package tag is same as previous continue with build process"
fi
rm -Rf ${TEMPDIR}'''
script{
env.PACKAGE_UPDATED = sh(
script: '''cat /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER}''',
returnStdout: true).trim()
}
}
}
// Exit the build if the package file was just updated
stage('PACKAGE-exit') {
when {
branch "nightly"
environment name: 'CHANGE_ID', value: ''
environment name: 'PACKAGE_UPDATED', value: 'true'
environment name: 'EXIT_STATUS', value: ''
}
steps {
script{
env.EXIT_STATUS = 'ABORTED'
}
}
}
// Exit the build if this is just a package check and there are no changes to push
stage('PACKAGECHECK-exit') {
when {
branch "nightly"
environment name: 'CHANGE_ID', value: ''
environment name: 'PACKAGE_UPDATED', value: 'false'
environment name: 'EXIT_STATUS', value: ''
expression {
params.PACKAGE_CHECK == 'true'
}
}
steps {
script{
env.EXIT_STATUS = 'ABORTED'
}
}
}
/* #######
Testing
####### */
@@ -295,13 +411,18 @@ pipeline {
stage('Test') {
when {
environment name: 'CI', value: 'true'
environment name: 'EXIT_STATUS', value: ''
}
steps {
withCredentials([
string(credentialsId: 'spaces-key', variable: 'DO_KEY'),
string(credentialsId: 'spaces-secret', variable: 'DO_SECRET')
]) {
script{
env.CI_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/index.html'
}
sh '''#! /bin/bash
set -e
docker pull lsiodev/ci:latest
if [ "${MULTIARCH}" == "true" ]; then
docker pull lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}
@@ -328,9 +449,6 @@ pipeline {
-e DO_BUCKET="lsio-ci" \
-t lsiodev/ci:latest \
python /ci/ci.py'''
script{
env.CI_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/index.html'
}
}
}
}
@@ -341,6 +459,7 @@ pipeline {
stage('Docker-Push-Single') {
when {
environment name: 'MULTIARCH', value: 'false'
environment name: 'EXIT_STATUS', value: ''
}
steps {
withCredentials([
@@ -355,9 +474,13 @@ pipeline {
sh '''#! /bin/bash
echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin
'''
sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:latest"
sh "docker push ${IMAGE}:latest"
sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:nightly"
sh "docker push ${IMAGE}:nightly"
sh "docker push ${IMAGE}:${META_TAG}"
sh '''docker rmi \
${IMAGE}:${META_TAG} \
${IMAGE}:nightly '''
}
}
}
@@ -365,6 +488,7 @@ pipeline {
stage('Docker-Push-Multi') {
when {
environment name: 'MULTIARCH', value: 'true'
environment name: 'EXIT_STATUS', value: ''
}
steps {
withCredentials([
@@ -385,53 +509,63 @@ pipeline {
docker tag lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v6-${META_TAG}
docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG}
fi'''
sh "docker tag ${IMAGE}:amd64-${META_TAG} ${IMAGE}:amd64-latest"
sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-latest"
sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-latest"
sh "docker tag ${IMAGE}:amd64-${META_TAG} ${IMAGE}:amd64-nightly"
sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-nightly"
sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-nightly"
sh "docker push ${IMAGE}:amd64-${META_TAG}"
sh "docker push ${IMAGE}:arm32v6-${META_TAG}"
sh "docker push ${IMAGE}:arm64v8-${META_TAG}"
sh "docker push ${IMAGE}:amd64-latest"
sh "docker push ${IMAGE}:arm32v6-latest"
sh "docker push ${IMAGE}:arm64v8-latest"
sh "docker manifest push --purge ${IMAGE}:latest || :"
sh "docker manifest create ${IMAGE}:latest ${IMAGE}:amd64-latest ${IMAGE}:arm32v6-latest ${IMAGE}:arm64v8-latest"
sh "docker manifest annotate ${IMAGE}:latest ${IMAGE}:arm32v6-latest --os linux --arch arm"
sh "docker manifest annotate ${IMAGE}:latest ${IMAGE}:arm64v8-latest --os linux --arch arm64 --variant armv8"
sh "docker manifest push --purge ${IMAGE}:${EXT_RELEASE}-ls${LS_TAG_NUMBER} || :"
sh "docker push ${IMAGE}:amd64-nightly"
sh "docker push ${IMAGE}:arm32v6-nightly"
sh "docker push ${IMAGE}:arm64v8-nightly"
sh "docker manifest push --purge ${IMAGE}:nightly || :"
sh "docker manifest create ${IMAGE}:nightly ${IMAGE}:amd64-nightly ${IMAGE}:arm32v6-nightly ${IMAGE}:arm64v8-nightly"
sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm32v6-nightly --os linux --arch arm"
sh "docker manifest annotate ${IMAGE}:nightly ${IMAGE}:arm64v8-nightly --os linux --arch arm64 --variant v8"
sh "docker manifest push --purge ${IMAGE}:${META_TAG} || :"
sh "docker manifest create ${IMAGE}:${META_TAG} ${IMAGE}:amd64-${META_TAG} ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm64v8-${META_TAG}"
sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm32v6-${META_TAG} --os linux --arch arm"
sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant armv8"
sh "docker manifest push --purge ${IMAGE}:latest"
sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8"
sh "docker manifest push --purge ${IMAGE}:nightly"
sh "docker manifest push --purge ${IMAGE}:${META_TAG}"
sh '''docker rmi \
${IMAGE}:amd64-${META_TAG} \
${IMAGE}:amd64-nightly \
${IMAGE}:arm32v6-${META_TAG} \
${IMAGE}:arm32v6-nightly \
${IMAGE}:arm64v8-${META_TAG} \
${IMAGE}:arm64v8-nightly \
lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} \
lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} '''
}
}
}
// If this is a public release tag it in the LS Github and push a changelog from external repo and our internal one
// If this is a public release tag it in the LS Github
stage('Github-Tag-Push-Release') {
when {
branch "master"
branch "nightly"
expression {
env.LS_RELEASE != env.EXT_RELEASE + '-pkg-' + env.PACKAGE_TAG + '-ls' + env.LS_TAG_NUMBER
env.LS_RELEASE != env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-ls' + env.LS_TAG_NUMBER
}
environment name: 'CHANGE_ID', value: ''
environment name: 'EXIT_STATUS', value: ''
}
steps {
echo "Pushing New tag for current commit ${EXT_RELEASE}-pkg-${PACKAGE_TAG}-ls${LS_TAG_NUMBER}"
echo "Pushing New tag for current commit ${EXT_RELEASE_CLEAN}-pkg-${PACKAGE_TAG}-ls${LS_TAG_NUMBER}"
sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \
-d '{"tag":"'${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\
-d '{"tag":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\
"object": "'${COMMIT_SHA}'",\
"message": "Tagging Release '${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}' to master",\
"message": "Tagging Release '${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}' to nightly",\
"type": "commit",\
"tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' '''
echo "Pushing New release for Tag"
sh '''#! /bin/bash
curl -s https://api.github.com/repos/${EXT_USER}/${EXT_REPO}/releases | jq ".[] | select(.tag_name == \"${EXT_RELEASE}\") | .body" | sed 's:^.\\(.*\\).$:\\1:' > releasebody.json
echo '{"tag_name":"'${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\
"target_commitish": "master",\
"name": "'${EXT_RELEASE}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\
"body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**'${EXT_REPO}' Changes:**\\n\\n' > start
printf '","draft": false,"prerelease": false}' >> releasebody.json
echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json
echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\
"target_commitish": "nightly",\
"name": "'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\
"body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start
printf '","draft": false,"prerelease": true}' >> releasebody.json
paste -d'\\0' start releasebody.json > releasebody.json.done
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
}
@@ -440,6 +574,7 @@ pipeline {
stage('Sync-README') {
when {
environment name: 'CHANGE_ID', value: ''
environment name: 'EXIT_STATUS', value: ''
}
steps {
withCredentials([
@@ -462,20 +597,39 @@ pipeline {
}
}
}
// If this is a Pull request send the CI link as a comment on it
stage('Pull Request Comment') {
when {
not {environment name: 'CHANGE_ID', value: ''}
environment name: 'CI', value: 'true'
environment name: 'EXIT_STATUS', value: ''
}
steps {
sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/issues/${PULL_REQUEST}/comments \
-d '{"body": "I am a bot, here are the test results for this PR '${CI_URL}'"}' '''
}
}
}
/* ######################
Send status to Discord
###################### */
post {
success {
sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
"username": "Jenkins"}' ${BUILDS_DISCORD} '''
}
failure {
sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
"username": "Jenkins"}' ${BUILDS_DISCORD} '''
always {
script{
if (env.EXIT_STATUS == "ABORTED"){
sh 'echo "build aborted"'
}
else if (currentBuild.currentResult == "SUCCESS"){
sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
"username": "Jenkins"}' ${BUILDS_DISCORD} '''
}
else {
sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\
"description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\
"username": "Jenkins"}' ${BUILDS_DISCORD} '''
}
}
}
}
}
+49 -20
View File
@@ -12,19 +12,16 @@ Find us at:
* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team.
* [IRC](https://irc.linuxserver.io) - on freenode at `#linuxserver.io`. Our primary support channel is Discord.
* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
* [Podcast](https://podcast.linuxserver.io) - on hiatus. Coming back soon (late 2018).
# PSA: Changes are happening
From August 2018 onwards, Linuxserver are in the midst of switching to a new CI platform which will enable us to build and release multiple architectures under a single repo. To this end, existing images for `arm64` and `armhf` builds are being deprecated. They are replaced by a manifest file in each container which automatically pulls the correct image for your architecture. You'll also be able to pull based on a specific architecture tag.
TLDR: Multi-arch support is changing from multiple repos to one repo per container image.
* [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018).
# [linuxserver/radarr](https://github.com/linuxserver/docker-radarr)
[![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn)
[![](https://images.microbadger.com/badges/version/linuxserver/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com")
[![](https://images.microbadger.com/badges/image/linuxserver/radarr.svg)](https://microbadger.com/images/linuxserver/radarr "Get your own version badge on microbadger.com")
![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/radarr.svg)
![Docker Stars](https://img.shields.io/docker/stars/linuxserver/radarr.svg)
[![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-radarr/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-radarr/job/master/)
[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/radarr/latest/index.html)
[Radarr](https://github.com/Radarr/Radarr) - A fork of Sonarr to work with movies à la Couchpotato.
@@ -33,16 +30,19 @@ TLDR: Multi-arch support is changing from multiple repos to one repo per contain
## Supported Architectures
Our images support multiple architectures such as `X86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list).
Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
Simply pulling `linuxserver/radarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
The architectures supported by this image are:
| Architecture | Tag |
| :----: | --- |
| X86-64 | amd64-latest |
| x86-64 | amd64-latest |
| arm64 | arm64v8-latest |
| armhf | arm32v6-latest |
## Usage
Here are some example snippets to help you get started creating a container.
@@ -52,13 +52,14 @@ Here are some example snippets to help you get started creating a container.
```
docker create \
--name=radarr \
-e PUID=1001 \
-e PGID=1001 \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 7878:7878 \
-v <path to data>:/config \
-v <path/to/movies>:/movies \
-v <path/to/downloadclient-downloads>:/downloads \
--restart unless-stopped \
linuxserver/radarr
```
@@ -71,8 +72,6 @@ The nightly branch and master branch can from time to time be the same version.
HOWEVER , USE THE NIGHTLY BRANCH AT YOUR OWN PERIL !!!!!!!!!
-p 7878:7878 \
### docker-compose
Compatible with docker-compose v2 schemas.
@@ -85,8 +84,8 @@ services:
image: linuxserver/radarr
container_name: radarr
environment:
- PUID=1001
- PGID=1001
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- <path to data>:/config
@@ -94,7 +93,6 @@ services:
- <path/to/downloadclient-downloads>:/downloads
ports:
- 7878:7878
mem_limit: 4096m
restart: unless-stopped
```
@@ -105,8 +103,8 @@ Container images are configured using parameters passed at runtime (such as thos
| Parameter | Function |
| :----: | --- |
| `-p 7878` | The port for the Radarr webinterface |
| `-e PUID=1001` | for UserID - see below for explanation |
| `-e PGID=1001` | for GroupID - see below for explanation |
| `-e PUID=1000` | for UserID - see below for explanation |
| `-e PGID=1000` | for GroupID - see below for explanation |
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London, this is required for Radarr |
| `-v /config` | Database and Radarr configs |
| `-v /movies` | Location of Movie library on disk |
@@ -118,13 +116,14 @@ When using volumes (`-v` flags) permissions issues can arise between the host OS
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below:
In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below:
```
$ id username
uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
```
&nbsp;
## Application Setup
@@ -141,6 +140,36 @@ Access the webui at `<your-ip>:7878`, for more information check out [Radarr](ht
* image version number
* `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/radarr`
## Updating Info
Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image.
Below are the instructions for updating containers:
### Via Docker Run/Create
* Update the image: `docker pull linuxserver/radarr`
* Stop the running container: `docker stop radarr`
* Delete the container: `docker rm radarr`
* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
* Start the new container: `docker start radarr`
* You can also remove the old dangling images: `docker image prune`
### Via Taisun auto-updater (especially useful if you don't remember the original parameters)
* Pull the latest image at its tag and replace it with the same env variables in one shot:
```
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock taisun/updater \
--oneshot radarr
```
* You can also remove the old dangling images: `docker image prune`
### Via Docker Compose
* Update all images: `docker-compose pull`
* or update a single image: `docker-compose pull radarr`
* Let compose update all containers as necessary: `docker-compose up -d`
* or update a single container: `docker-compose up -d radarr`
* You can also remove the old dangling images: `docker image prune`
## Versions
* **09.09.18:** - Add pipeline build process.
+28
View File
@@ -0,0 +1,28 @@
---
# jenkins variables
project_name: docker-radarr
external_type: custom_json
release_type: prerelease
release_tag: nightly
ls_branch: nightly
repo_vars:
- JSON_URL = 'http://radarr.aeonlucid.com/v1/update/nightly/changes?os=linux'
- JSON_PATH = '.[0].version'
- BUILD_VERSION_ARG = 'RADARR_RELEASE'
- LS_USER = 'linuxserver'
- LS_REPO = 'docker-radarr'
- CONTAINER_NAME = 'radarr'
- DOCKERHUB_IMAGE = 'linuxserver/radarr'
- DEV_DOCKERHUB_IMAGE = 'lsiodev/radarr'
- PR_DOCKERHUB_IMAGE = 'lspipepr/radarr'
- DIST_IMAGE = 'ubuntu'
- MULTIARCH='true'
- CI='true'
- CI_WEB='true'
- CI_PORT='7878'
- CI_SSL='false'
- CI_DELAY='120'
- CI_DOCKERENV='TZ=US/Pacific'
- CI_AUTH='user:password'
- CI_WEBPATH=''
+353
View File
@@ -0,0 +1,353 @@
adduser/now 3.113+nmu3ubuntu4
apt/now 1.2.29ubuntu0.1
apt-transport-https/now 1.2.31
apt-utils/now 1.2.29ubuntu0.1
base-files/now 9.4ubuntu4.8
base-passwd/now 3.5.39
bash/now 4.3-14ubuntu1.2
binutils/now 2.26.1-1ubuntu1~16.04.8
bsdutils/now 1:2.27.1-6ubuntu3.6
bzip2/now 1.0.6-8
ca-certificates/now 20170717~16.04.2
ca-certificates-mono/now 5.18.1.0-0xamarin4+ubuntu1604b1
cli-common/now 0.9+xamarin8+ubuntu1604b1
coreutils/now 8.25-2ubuntu3~16.04
curl/now 7.47.0-1ubuntu2.12
dash/now 0.5.8-2.1ubuntu2
debconf/now 1.5.58ubuntu1
debianutils/now 4.7
diffutils/now 1:3.3-3
dpkg/now 1.18.4ubuntu1.5
dpkg-dev/now 1.18.4ubuntu1.5
e2fslibs/now 1.42.13-1ubuntu1
e2fsprogs/now 1.42.13-1ubuntu1
findutils/now 4.6.0+git+20160126-2
fontconfig-config/now 2.11.94-0ubuntu1.1
fonts-dejavu-core/now 2.35-1
gcc-5-base/now 5.4.0-6ubuntu1~16.04.11
gcc-6-base/now 6.0.1-0ubuntu1
gnupg/now 1.4.20-1ubuntu3.3
gpgv/now 1.4.20-1ubuntu3.3
grep/now 2.25-1~16.04.1
gzip/now 1.6-4ubuntu1
hostname/now 3.16ubuntu2
init/now 1.29ubuntu4
init-system-helpers/now 1.29ubuntu4
initscripts/now 2.88dsf-59.3ubuntu2
insserv/now 1.14.0-5ubuntu3
jq/now 1.5+dfsg-1ubuntu0.1
krb5-locales/now 1.13.2+dfsg-5ubuntu2.1
libacl1/now 2.2.52-3
libapparmor1/now 2.10.95-0ubuntu2.10
libapt-inst2.0/now 1.2.29ubuntu0.1
libapt-pkg5.0/now 1.2.29ubuntu0.1
libasn1-8-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libattr1/now 1:2.4.47-2
libaudit-common/now 1:2.4.5-1ubuntu2.1
libaudit1/now 1:2.4.5-1ubuntu2.1
libblkid1/now 2.27.1-6ubuntu3.6
libbz2-1.0/now 1.0.6-8
libc-bin/now 2.23-0ubuntu11
libc6/now 2.23-0ubuntu11
libcairo2/now 1.14.6-1
libcap2/now 1:2.24-12
libcap2-bin/now 1:2.24-12
libcomerr2/now 1.42.13-1ubuntu1
libcryptsetup4/now 2:1.6.6-5ubuntu2.1
libcurl3/now 7.47.0-1ubuntu2.12
libcurl3-gnutls/now 7.47.0-1ubuntu2.12
libcurl4-openssl-dev/now 7.47.0-1ubuntu2.12
libdb5.3/now 5.3.28-11ubuntu0.1
libdebconfclient0/now 0.198ubuntu1
libdevmapper1.02.1/now 2:1.02.110-1ubuntu10
libdpkg-perl/now 1.18.4ubuntu1.5
libexif12/now 0.6.21-2
libexpat1/now 2.1.0-7ubuntu0.16.04.3
libfdisk1/now 2.27.1-6ubuntu3.6
libffi6/now 3.2.1-4
libfontconfig1/now 2.11.94-0ubuntu1.1
libfreetype6/now 2.6.1-0.1ubuntu2.3
libgcc1/now 1:6.0.1-0ubuntu1
libgcrypt20/now 1.6.5-2ubuntu0.5
libgdbm3/now 1.8.3-13.1
libgdiplus/now 5.6.1-0xamarin1+ubuntu1604b1
libgif7/now 5.1.4-0.3~16.04
libglib2.0-0/now 2.48.2-0ubuntu4.1
libgmp10/now 2:6.1.0+dfsg-2
libgnutls30/now 3.4.10-4ubuntu1.4
libgpg-error0/now 1.21-2ubuntu1
libgssapi-krb5-2/now 1.13.2+dfsg-5ubuntu2.1
libgssapi3-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libhcrypto4-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libheimbase1-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libheimntlm0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libhogweed4/now 3.2-1ubuntu0.16.04.1
libhx509-5-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libidn11/now 1.32-3ubuntu1.2
libjbig0/now 2.1-3.1
libjpeg-turbo8/now 1.4.2-0ubuntu3.1
libjpeg8/now 8c-2ubuntu8
libk5crypto3/now 1.13.2+dfsg-5ubuntu2.1
libkeyutils1/now 1.5.9-8ubuntu1
libkmod2/now 22-1ubuntu5.2
libkrb5-26-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libkrb5-3/now 1.13.2+dfsg-5ubuntu2.1
libkrb5support0/now 1.13.2+dfsg-5ubuntu2.1
libldap-2.4-2/now 2.4.42+dfsg-2ubuntu3.4
liblz4-1/now 0.0~r131-2ubuntu2
liblzma5/now 5.1.1alpha+20120614-2ubuntu2
libmediainfo0v5/now 18.12-1
libmms0/now 0.6.4-1
libmono-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-accessibility4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-cairo4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-cecil-private-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1
libmono-cil-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-codecontracts4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-compilerservices-symbolwriter4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-corlib4.5-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-cscompmgd0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-csharp4.0c-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-custommarshalers4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-data-tds4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-db2-1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-debugger-soft4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n-cjk4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n-mideast4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n-other4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n-rare4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n-west4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n4.0-all/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-i18n4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-messaging-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-build-engine4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-build-framework4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-build4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-csharp4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1
libmono-microsoft-visualc10.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-microsoft-web-infrastructure1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-oracle4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-parallel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-peapi4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-posix4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-relaxng4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-sharpzip4.84-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-simd4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-smdiagnostics0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-sqlite4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-componentmodel-composition4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-configuration-install4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-configuration4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-core4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-data-datasetextensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-data-entity4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-data-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-data-services-client4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-data-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-deployment4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-drawing-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-drawing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-dynamic4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-enterpriseservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-identitymodel-selectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-identitymodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-io-compression-filesystem4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-io-compression4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-json-microsoft4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-json4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-ldap-protocols4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-net-http-formatting4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-net-http-webrequest4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-net-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-net4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-numerics-vectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-numerics4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-core2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-debugger2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-experimental2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-interfaces2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-linq2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-observable-aliases0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-platformservices2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-providers2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-windows-forms2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reactive-windows-threading2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-reflection-context4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-runtime-caching4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-runtime-durableinstancing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-runtime-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-servicemodel-activation4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-servicemodel-discovery4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-servicemodel-internals0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-servicemodel-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-servicemodel-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-servicemodel4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-serviceprocess4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-transactions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-abstractions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-applicationservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-dynamicdata4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-extensions-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-extensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-http-selfhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-http-webhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-mobile4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-mvc3.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-regularexpressions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-webpages-deployment2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-webpages-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web-webpages2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-windows-forms4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-windows4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-workflow-activities4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-workflow-componentmodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-workflow-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-xaml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-xml-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-xml-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system-xml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-system4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-tasklets4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-webbrowser4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-webmatrix-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-windowsbase4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmono-xbuild-tasks4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmonosgen-2.0-1/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmonosgen-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1604b1
libmount1/now 2.27.1-6ubuntu3.6
libncurses5/now 6.0+20160213-1ubuntu1
libncursesw5/now 6.0+20160213-1ubuntu1
libnettle6/now 3.2-1ubuntu0.16.04.1
libnunit-cil-dev/now 2.6.4+dfsg-1
libnunit-console-runner2.6.3-cil/now 2.6.4+dfsg-1
libnunit-core-interfaces2.6.3-cil/now 2.6.4+dfsg-1
libnunit-core2.6.3-cil/now 2.6.4+dfsg-1
libnunit-framework2.6.3-cil/now 2.6.4+dfsg-1
libnunit-mocks2.6.3-cil/now 2.6.4+dfsg-1
libnunit-util2.6.3-cil/now 2.6.4+dfsg-1
libonig2/now 5.9.6-1ubuntu0.1
libp11-kit0/now 0.23.2-5~ubuntu16.04.1
libpam-modules/now 1.1.8-3.2ubuntu2.1
libpam-modules-bin/now 1.1.8-3.2ubuntu2.1
libpam-runtime/now 1.1.8-3.2ubuntu2.1
libpam0g/now 1.1.8-3.2ubuntu2.1
libpcre3/now 2:8.38-3.1
libperl5.22/now 5.22.1-9ubuntu0.6
libpixman-1-0/now 0.33.6-1
libpng12-0/now 1.2.54-1ubuntu1.1
libprocps4/now 2:3.3.10-4ubuntu2.4
libpython-stdlib/now 2.7.12-1~16.04
libpython2.7-minimal/now 2.7.12-1ubuntu0~16.04.4
libpython2.7-stdlib/now 2.7.12-1ubuntu0~16.04.4
libreadline6/now 6.3-8ubuntu2
libroken18-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
librtmp1/now 2.4+20151223.gitfa8646d-1ubuntu0.1
libsasl2-2/now 2.1.26.dfsg1-14ubuntu0.1
libsasl2-modules/now 2.1.26.dfsg1-14ubuntu0.1
libsasl2-modules-db/now 2.1.26.dfsg1-14ubuntu0.1
libseccomp2/now 2.3.1-2.1ubuntu2~16.04.1
libselinux1/now 2.4-3build2
libsemanage-common/now 2.3-1build3
libsemanage1/now 2.3-1build3
libsepol1/now 2.4-2
libsmartcols1/now 2.27.1-6ubuntu3.6
libsqlite3-0/now 3.11.0-1ubuntu1.1
libss2/now 1.42.13-1ubuntu1
libssl1.0.0/now 1.0.2g-1ubuntu4.15
libstdc++6/now 5.4.0-6ubuntu1~16.04.11
libsystemd0/now 229-4ubuntu21.17
libtasn1-6/now 4.7-3ubuntu0.16.04.3
libtiff5/now 4.0.6-1ubuntu0.6
libtinfo5/now 6.0+20160213-1ubuntu1
libudev1/now 229-4ubuntu21.17
libusb-0.1-4/now 2:0.1.12-28
libustr-1.0-1/now 1.0.4-5
libuuid1/now 2.27.1-6ubuntu3.6
libwind0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1
libx11-6/now 2:1.6.3-1ubuntu2.1
libx11-data/now 2:1.6.3-1ubuntu2.1
libxau6/now 1:1.0.8-1
libxcb-render0/now 1.11.1-1ubuntu1
libxcb-shm0/now 1.11.1-1ubuntu1
libxcb1/now 1.11.1-1ubuntu1
libxdmcp6/now 1:1.1.2-1.1
libxext6/now 2:1.3.3-1
libxrender1/now 1:0.9.9-0ubuntu1
libzen0v5/now 0.4.37-1
locales/now 2.23-0ubuntu11
login/now 1:4.2-3.1ubuntu5.3
lsb-base/now 9.20160110ubuntu0.2
make/now 4.1-6
makedev/now 2.3.1-93ubuntu2~ubuntu16.04.1
mawk/now 1.3.3-17ubuntu2
mediainfo/now 18.12-1
mime-support/now 3.59ubuntu1
mono-4.0-gac/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-devel/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-gac/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-mcs/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-roslyn/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-runtime/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-runtime-common/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-runtime-sgen/now 5.18.1.0-0xamarin4+ubuntu1604b1
mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1
mono-xbuild/now 5.18.1.0-0xamarin4+ubuntu1604b1
mount/now 2.27.1-6ubuntu3.6
multiarch-support/now 2.23-0ubuntu11
ncurses-base/now 6.0+20160213-1ubuntu1
ncurses-bin/now 6.0+20160213-1ubuntu1
openssl/now 1.0.2g-1ubuntu4.15
passwd/now 1:4.2-3.1ubuntu5.3
patch/now 2.7.5-1ubuntu0.16.04.1
perl/now 5.22.1-9ubuntu0.6
perl-base/now 5.22.1-9ubuntu0.6
perl-modules-5.22/now 5.22.1-9ubuntu0.6
pkg-config/now 0.29.1-0ubuntu1
procps/now 2:3.3.10-4ubuntu2.4
python/now 2.7.12-1~16.04
python-minimal/now 2.7.12-1~16.04
python2.7/now 2.7.12-1ubuntu0~16.04.4
python2.7-minimal/now 2.7.12-1ubuntu0~16.04.4
readline-common/now 6.3-8ubuntu2
sed/now 4.2.2-7
sensible-utils/now 0.0.9ubuntu0.16.04.1
sqlite3/now 3.11.0-1ubuntu1.1
systemd/now 229-4ubuntu21.17
systemd-sysv/now 229-4ubuntu21.17
sysv-rc/now 2.88dsf-59.3ubuntu2
sysvinit-utils/now 2.88dsf-59.3ubuntu2
tar/now 1.28-2.1ubuntu0.1
tzdata/now 2018i-0ubuntu0.16.04
ubuntu-keyring/now 2012.05.19
ucf/now 3.0036
unzip/now 6.0-20ubuntu1
util-linux/now 2.27.1-6ubuntu3.6
xz-utils/now 5.1.1alpha+20120614-2ubuntu2
zlib1g/now 1:1.2.8.dfsg-2ubuntu4.1