From 227da52355214ee641d5d0a88786f777a9e9970b Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Wed, 10 Jan 2018 11:16:55 +0000 Subject: [PATCH 1/7] bump alpine 3.7 --- Dockerfile | 8 ++++---- README.md | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ea70164..44abb10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ -FROM lsiobase/alpine:3.6 -MAINTAINER sparklyballs +FROM lsiobase/alpine:3.7 # set version label ARG BUILD_DATE ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="sparklyballs" -# install packages RUN \ + echo "**** install packages ****" && \ apk add --no-cache \ curl \ jq \ @@ -20,7 +20,7 @@ RUN \ unrar \ unzip -# copy local files +# copy local files COPY root/ / # ports and volumes diff --git a/README.md b/README.md index f2459b7..4e1cdbd 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ The automatic update will run once a day at 3am local server time. ## Versions ++ **10.01.18:** Rebase to alpine linux 3.7. + **25.07.17:** Add rsync package. + **27.05.17:** Rebase to alpine linux 3.6. + **06.02.17:** Rebase to alpine linux 3.5. From 4302df7270b4a30d15fbd6b5ab9ff3d2f6a66bf3 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Mon, 12 Feb 2018 16:02:09 +0000 Subject: [PATCH 2/7] use edge repo for transmission --- Dockerfile | 8 +++++--- README.md | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 44abb10..2a2b232 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,10 +15,12 @@ RUN \ p7zip \ rsync \ tar \ - transmission-cli \ - transmission-daemon \ unrar \ - unzip + unzip && \ + apk add --no-cache \ + --repository http://nl.alpinelinux.org/alpine/edge/main \ + transmission-cli \ + transmission-daemon # copy local files COPY root/ / diff --git a/README.md b/README.md index 4e1cdbd..6458183 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ The automatic update will run once a day at 3am local server time. ## Versions ++ **12.02.18:** Pull transmission from edge repo. + **10.01.18:** Rebase to alpine linux 3.7. + **25.07.17:** Add rsync package. + **27.05.17:** Rebase to alpine linux 3.6. From 9f73545a49aa0864f1a93b08cf1fcba2b46d832d Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Wed, 15 Aug 2018 21:11:21 +0100 Subject: [PATCH 3/7] rebase to alpine 3.8, don't need to pull from edge --- Dockerfile | 10 ++++------ README.md | 1 + 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2a2b232..b8c2c6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/alpine:3.7 +FROM lsiobase/alpine:3.8 # set version label ARG BUILD_DATE @@ -15,12 +15,10 @@ RUN \ p7zip \ rsync \ tar \ - unrar \ - unzip && \ - apk add --no-cache \ - --repository http://nl.alpinelinux.org/alpine/edge/main \ transmission-cli \ - transmission-daemon + transmission-daemon \ + unrar \ + unzip # copy local files COPY root/ / diff --git a/README.md b/README.md index 6458183..5af5ded 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,7 @@ The automatic update will run once a day at 3am local server time. ## Versions ++ **15.08.18:** Rebase to alpine linux 3.8. + **12.02.18:** Pull transmission from edge repo. + **10.01.18:** Rebase to alpine linux 3.7. + **25.07.17:** Add rsync package. From e95003081357de08f5a2bf82db267a30cfe7a186 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 7 Feb 2019 18:47:43 -0800 Subject: [PATCH 4/7] adding pipeline logic and multi arching --- Dockerfile.aarch64 | 31 +++ Dockerfile.armhf | 31 +++ Jenkinsfile | 602 +++++++++++++++++++++++++++++++++++++++++++++ README.md | 12 +- jenkins-vars.yml | 27 ++ readme-vars.yml | 130 ++++++++++ 6 files changed, 827 insertions(+), 6 deletions(-) create mode 100644 Dockerfile.aarch64 create mode 100644 Dockerfile.armhf create mode 100644 Jenkinsfile create mode 100644 jenkins-vars.yml create mode 100644 readme-vars.yml diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 new file mode 100644 index 0000000..a2ead27 --- /dev/null +++ b/Dockerfile.aarch64 @@ -0,0 +1,31 @@ +FROM lsiobase/alpine.arm64:3.8 + +# Add qemu to build on x86_64 systems +COPY qemu-aarch64-static /usr/bin + +# set version label +ARG BUILD_DATE +ARG VERSION +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="sparklyballs" + +RUN \ + echo "**** install packages ****" && \ + apk add --no-cache \ + curl \ + jq \ + openssl \ + p7zip \ + rsync \ + tar \ + transmission-cli \ + transmission-daemon \ + unrar \ + unzip + +# copy local files +COPY root/ / + +# ports and volumes +EXPOSE 9091 51413 +VOLUME /config /downloads /watch diff --git a/Dockerfile.armhf b/Dockerfile.armhf new file mode 100644 index 0000000..b114990 --- /dev/null +++ b/Dockerfile.armhf @@ -0,0 +1,31 @@ +FROM lsiobase/alpine.armhf:3.8 + +# Add qemu to build on x86_64 systems +COPY qemu-arm-static /usr/bin + +# set version label +ARG BUILD_DATE +ARG VERSION +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="sparklyballs" + +RUN \ + echo "**** install packages ****" && \ + apk add --no-cache \ + curl \ + jq \ + openssl \ + p7zip \ + rsync \ + tar \ + transmission-cli \ + transmission-daemon \ + unrar \ + unzip + +# copy local files +COPY root/ / + +# ports and volumes +EXPOSE 9091 51413 +VOLUME /config /downloads /watch diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..4010a8e --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,602 @@ +pipeline { + agent { + label 'X86-64-MULTI' + } + // 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 { + BUILDS_DISCORD=credentials('build_webhook_url') + GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') + BUILD_VERSION_ARG = 'TRANSMISSION_VERSION' + LS_USER = 'linuxserver' + LS_REPO = 'docker-transmission' + CONTAINER_NAME = 'transmission' + DOCKERHUB_IMAGE = 'linuxserver/transmission' + DEV_DOCKERHUB_IMAGE = 'lsiodev/transmission' + PR_DOCKERHUB_IMAGE = 'lspipepr/transmission' + DIST_IMAGE = 'alpine' + MULTIARCH='true' + CI='true' + CI_WEB='true' + CI_PORT='9091' + CI_SSL='false' + CI_DELAY='120' + CI_DOCKERENV='TZ=US/Pacific' + CI_AUTH='user:password' + CI_WEBPATH='' + } + stages { + // Setup all the basic environment variables needed for the build + 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' ''', + 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' ''', + returnStdout: true).trim() + env.GITHUB_DATE = sh( + script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', + returnStdout: true).trim() + env.COMMIT_SHA = sh( + script: '''git rev-parse HEAD''', + returnStdout: true).trim() + env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' + env.PULL_REQUEST = env.CHANGE_ID + } + script{ + env.LS_RELEASE_NUMBER = sh( + script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''', + returnStdout: true).trim() + } + script{ + env.LS_TAG_NUMBER = sh( + script: '''#! /bin/bash + tagsha=$(git rev-list -n 1 ${LS_RELEASE} 2>/dev/null) + if [ "${tagsha}" == "${COMMIT_SHA}" ]; then + echo ${LS_RELEASE_NUMBER} + elif [ -z "${GIT_COMMIT}" ]; then + echo ${LS_RELEASE_NUMBER} + else + echo $((${LS_RELEASE_NUMBER} + 1)) + fi''', + returnStdout: true).trim() + } + } + } + /* ####################### + Package Version Tagging + ####################### */ + // Grab the current package versions in Git to determine package tag + stage("Set Package tag"){ + steps{ + script{ + 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 custom command to determine version use that command + stage("Set tag custom bash"){ + steps{ + script{ + env.EXT_RELEASE = sh( + script: ''' curl -s http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/ |awk -F '(transmission-cli-|.apk)' '/transmission-cli.*.apk/ {print $2}' ''', + returnStdout: true).trim() + env.RELEASE_LINK = 'custom_command' + } + } + } + // 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 + stage("Set ENV live build"){ + when { + branch "master" + environment name: 'CHANGE_ID', value: '' + } + steps { + script{ + env.IMAGE = env.DOCKERHUB_IMAGE + if (env.MULTIARCH == 'true') { + 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_CLEAN + '-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"} + environment name: 'CHANGE_ID', value: '' + } + steps { + script{ + env.IMAGE = env.DEV_DOCKERHUB_IMAGE + if (env.MULTIARCH == 'true') { + 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_CLEAN + '-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/' + } + } + } + // If this is a pull request build use dev docker endpoints + stage("Set ENV PR build"){ + when { + not {environment name: 'CHANGE_ID', value: ''} + } + steps { + script{ + env.IMAGE = env.PR_DOCKERHUB_IMAGE + if (env.MULTIARCH == 'true') { + 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_CLEAN + '-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 containers to render templated files + stage('Update-Templates') { + when { + branch "master" + environment name: 'CHANGE_ID', value: '' + expression { + env.CONTAINER_NAME != null + } + } + 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=master -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker pull linuxserver/doc-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=master -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 master + 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 [ ! -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.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } + } + } + // Exit the build if the Templated files were just updated + stage('Template-exit') { + when { + branch "master" + environment name: 'CHANGE_ID', value: '' + environment name: 'FILES_UPDATED', value: 'true' + expression { + env.CONTAINER_NAME != null + } + } + steps { + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + /* ############### + Build Container + ############### */ + // 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}" + } + } + } + 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}" + } + } + } + } + } + // Take the image we just built and dump package versions for comparison + stage('Update-packages') { + when { + branch "master" + 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 > /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 master + 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 "master" + 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 "master" + 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 + ####### */ + // Run Container tests + 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} + docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + 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 + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -e IMAGE=\"${IMAGE}\" \ + -e DELAY_START=\"${CI_DELAY}\" \ + -e TAGS=\"${CI_TAGS}\" \ + -e META_TAG=\"${META_TAG}\" \ + -e PORT=\"${CI_PORT}\" \ + -e SSL=\"${CI_SSL}\" \ + -e BASE=\"${DIST_IMAGE}\" \ + -e SECRET_KEY=\"${DO_SECRET}\" \ + -e ACCESS_KEY=\"${DO_KEY}\" \ + -e DOCKER_ENV=\"${CI_DOCKERENV}\" \ + -e WEB_SCREENSHOT=\"${CI_WEB}\" \ + -e WEB_AUTH=\"${CI_AUTH}\" \ + -e WEB_PATH=\"${CI_WEBPATH}\" \ + -e DO_REGION="ams3" \ + -e DO_BUCKET="lsio-ci" \ + -t lsiodev/ci:latest \ + python /ci/ci.py''' + } + } + } + /* ################## + Release Logic + ################## */ + // If this is an amd64 only image only push a single image + stage('Docker-Push-Single') { + when { + environment name: 'MULTIARCH', value: 'false' + environment name: 'EXIT_STATUS', value: '' + } + 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 "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:latest" + sh "docker push ${IMAGE}:latest" + sh "docker push ${IMAGE}:${META_TAG}" + } + } + } + // If this is a multi arch release push all images and define the manifest + stage('Docker-Push-Multi') { + when { + environment name: 'MULTIARCH', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + ''' + sh '''#! /bin/bash + if [ "${CI}" == "false" ]; then + docker pull lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + 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 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 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 v8" + sh "docker manifest push --purge ${IMAGE}:latest" + sh "docker manifest push --purge ${IMAGE}:${META_TAG}" + } + } + } + // If this is a public release tag it in the LS Github + stage('Github-Tag-Push-Release') { + when { + branch "master" + expression { + 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_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_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "object": "'${COMMIT_SHA}'",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}' to master",\ + "type": "commit",\ + "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' + echo "Pushing New release for Tag" + sh '''#! /bin/bash + echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json + echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "target_commitish": "master",\ + "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": false}' >> 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''' + } + } + // Use helper container to sync the current README on master to the dockerhub endpoint + stage('Sync-README') { + when { + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + docker pull lsiodev/readme-sync + docker run --rm=true \ + -e DOCKERHUB_USERNAME=$DOCKERUSER \ + -e DOCKERHUB_PASSWORD=$DOCKERPASS \ + -e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \ + -e DOCKER_REPOSITORY=${IMAGE} \ + -e GIT_BRANCH=master \ + lsiodev/readme-sync bash -c 'node sync' ''' + } + } + } + } + /* ###################### + Send status to Discord + ###################### */ + post { + 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} ''' + } + } + } + } +} diff --git a/README.md b/README.md index 5af5ded..b9e8447 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ linuxserver/transmission ## 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. +`The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.` -* `-p 9091` +* `-p 9091` * `-p 51413` - the port(s) * `-v /config` - where transmission should store config files and logs * `-v /downloads` - local path for downloads @@ -63,7 +63,7 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) ``` -## Setting up the application +## Setting up the application Webui is on port 9091, the settings.json file in /config has extra settings not available in the webui. Stop the container before editing it or any changes won't be saved. @@ -93,7 +93,7 @@ The automatic update will run once a day at 3am local server time. * To monitor the logs of the container in realtime `docker logs -f transmission`. -* container version number +* container version number `docker inspect -f '{{ index .Config.Labels "build_version" }}' transmission` @@ -104,6 +104,7 @@ The automatic update will run once a day at 3am local server time. ## Versions ++ **07.02.19:** Add pipeline logic and multi arch. + **15.08.18:** Rebase to alpine linux 3.8. + **12.02.18:** Pull transmission from edge repo. + **10.01.18:** Rebase to alpine linux 3.7. @@ -119,5 +120,4 @@ The automatic update will run once a day at 3am local server time. + **28.08.16:** Add badges to README. + **09.08.16:** Rebase to alpine linux. + **06.12.15:** Separate mapping for watch folder. -+ **16.11.15:** Initial Release. - ++ **16.11.15:** Initial Release. diff --git a/jenkins-vars.yml b/jenkins-vars.yml new file mode 100644 index 0000000..eb6f7e1 --- /dev/null +++ b/jenkins-vars.yml @@ -0,0 +1,27 @@ +--- + +# jenkins variables +project_name: docker-transmission +external_type: na +custom_version_command: "curl -s http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/ |awk -F '(transmission-cli-|.apk)' '/transmission-cli.*.apk/ {print $2}'" +release_type: stable +release_tag: latest +ls_branch: master +repo_vars: + - BUILD_VERSION_ARG = 'TRANSMISSION_VERSION' + - LS_USER = 'linuxserver' + - LS_REPO = 'docker-transmission' + - CONTAINER_NAME = 'transmission' + - DOCKERHUB_IMAGE = 'linuxserver/transmission' + - DEV_DOCKERHUB_IMAGE = 'lsiodev/transmission' + - PR_DOCKERHUB_IMAGE = 'lspipepr/transmission' + - DIST_IMAGE = 'alpine' + - MULTIARCH='true' + - CI='true' + - CI_WEB='true' + - CI_PORT='9091' + - CI_SSL='false' + - CI_DELAY='120' + - CI_DOCKERENV='TZ=US/Pacific' + - CI_AUTH='user:password' + - CI_WEBPATH='' diff --git a/readme-vars.yml b/readme-vars.yml new file mode 100644 index 0000000..a1b4a55 --- /dev/null +++ b/readme-vars.yml @@ -0,0 +1,130 @@ +--- + +# project information +project_name: transmission +full_custom_readme: | + {% raw -%} + [linuxserverurl]: https://linuxserver.io + [forumurl]: https://forum.linuxserver.io + [ircurl]: https://www.linuxserver.io/irc/ + [podcasturl]: https://www.linuxserver.io/podcast/ + [appurl]: https://www.transmissionbt.com/ + [hub]: https://hub.docker.com/r/linuxserver/transmission/ + + [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] + + The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at: + * [forum.linuxserver.io][forumurl] + * [IRC][ircurl] on freenode at `#linuxserver.io` + * [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! + + # linuxserver/transmission + [![](https://images.microbadger.com/badges/version/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own version badge on microbadger.com")[![](https://images.microbadger.com/badges/image/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own image badge on microbadger.com")[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/transmission.svg)][hub][![Docker Stars](https://img.shields.io/docker/stars/linuxserver/transmission.svg)][hub][![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Builders/x86-64/x86-64-transmission)](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-transmission/) + + Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more. [Transmission](http://www.transmissionbt.com/about/) + + [![transmission](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png)][appurl] + + ## Usage + + ``` + docker create --name=transmission \ + -v :/config \ + -v :/downloads \ + -v :/watch \ + -e PGID= -e PUID= \ + -e TZ= \ + -p 9091:9091 -p 51413:51413 \ + -p 51413:51413/udp \ + linuxserver/transmission + ``` + + ## 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. + For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. + So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 + http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.` + + + * `-p 9091` + * `-p 51413` - the port(s) + * `-v /config` - where transmission should store config files and logs + * `-v /downloads` - local path for downloads + * `-v /watch` - watch folder for torrent files + * `-e PGID` for GroupID - see below for explanation + * `-e PUID` for UserID - see below for explanation + * `-e TZ` for timezone information, eg Europe/London + + It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it transmission /bin/bash`. + + ### User / Group Identifiers + + Sometimes when using data volumes (`-v` flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" ™. + + In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as below: + + ``` + $ id + uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) + ``` + + ## Setting up the application + + Webui is on port 9091, the settings.json file in /config has extra settings not available in the webui. Stop the container before editing it or any changes won't be saved. + + ## Securing the webui with a username/password. + + this requires 3 settings to be changed in the settings.json file. + + `Make sure the container is stopped before editing these settings.` + + `"rpc-authentication-required": true,` - check this, the default is false, change to true. + + `"rpc-username": "transmission",` substitute transmission for your chosen user name, this is just an example. + + `rpc-password` will be a hash starting with {, replace everything including the { with your chosen password, keeping the quotes. + + Transmission will convert it to a hash when you restart the container after making the above edits. + + ## Updating Blocklists Automatically + + This requires `"blocklist-enabled": true,` to be set. By setting this to true, it is assumed you have also populated `blocklist-url` with a valid block list. + + The automatic update is a shell script that downloads a blocklist from the url stored in the settings.json, gunzips it, and restarts the transmission daemon. + + The automatic update will run once a day at 3am local server time. + + ## Info + + * To monitor the logs of the container in realtime `docker logs -f transmission`. + + * container version number + + `docker inspect -f '{{ index .Config.Labels "build_version" }}' transmission` + + * image version number + + `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/transmission` + + + ## Versions + + + **07.02.19:** Add pipeline logic and multi arch. + + **15.08.18:** Rebase to alpine linux 3.8. + + **12.02.18:** Pull transmission from edge repo. + + **10.01.18:** Rebase to alpine linux 3.7. + + **25.07.17:** Add rsync package. + + **27.05.17:** Rebase to alpine linux 3.6. + + **06.02.17:** Rebase to alpine linux 3.5. + + **15.01.17:** Add p7zip, tar , unrar and unzip packages. + + **16.10.16:** Blocklist autoupdate with optional authentication. + + **14.10.16:** Add version layer information. + + **23.09.16:** Add information about securing the webui to README.. + + **21.09.16:** Add curl package. + + **09.09.16:** Add layer badges to README. + + **28.08.16:** Add badges to README. + + **09.08.16:** Rebase to alpine linux. + + **06.12.15:** Separate mapping for watch folder. + + **16.11.15:** Initial Release. + {%- endraw %} From 77ee400d523ea66e534eba42c0121cb55501b083 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 11 Feb 2019 18:25:55 +0000 Subject: [PATCH 5/7] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4010a8e..25bc4d2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -201,7 +201,7 @@ pipeline { fi mkdir -p ${TEMPDIR}/gitbook git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [ ! -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 + 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 From 19c00947461cd6bbcfa16fd4a76e5e0ca29a2cf9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 11 Feb 2019 13:27:53 -0500 Subject: [PATCH 6/7] Bot Updating Package Versions --- package_versions.txt | 48 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 package_versions.txt diff --git a/package_versions.txt b/package_versions.txt new file mode 100755 index 0000000..fbefa67 --- /dev/null +++ b/package_versions.txt @@ -0,0 +1,48 @@ +musl musl-1.1.19-r10 +busybox busybox-1.28.4-r3 +alpine-baselayout alpine-baselayout-3.1.0-r0 +alpine-keys alpine-keys-2.1-r1 +libressl2.7-libcrypto libressl2.7-libcrypto-2.7.4-r0 +libressl2.7-libssl libressl2.7-libssl-2.7.4-r0 +libressl2.7-libtls libressl2.7-libtls-2.7.4-r0 +ssl_client ssl_client-1.28.4-r3 +zlib zlib-1.2.11-r1 +apk-tools apk-tools-2.10.1-r0 +scanelf scanelf-1.2.3-r0 +musl-utils musl-utils-1.1.19-r10 +libc-utils libc-utils-0.7.1-r0 +xz-libs xz-libs-5.2.4-r0 +xz xz-5.2.4-r0 +ca-certificates ca-certificates-20171114-r3 +ncurses-terminfo-base ncurses-terminfo-base-6.1_p20180818-r1 +ncurses-terminfo ncurses-terminfo-6.1_p20180818-r1 +ncurses-libs ncurses-libs-6.1_p20180818-r1 +readline readline-7.0.003-r0 +bash bash-4.4.19-r1 +libattr libattr-2.4.47-r7 +libacl libacl-2.2.52-r5 +coreutils coreutils-8.29-r2 +linux-pam linux-pam-1.3.0-r0 +shadow shadow-4.5-r0 +tzdata tzdata-2018f-r0 +nghttp2-libs nghttp2-libs-1.32.0-r0 +libssh2 libssh2-1.8.0-r3 +libcurl libcurl-7.61.1-r1 +curl curl-7.61.1-r1 +oniguruma oniguruma-6.8.2-r0 +jq jq-1.6_rc1-r1 +libcrypto1.0 libcrypto1.0-1.0.2q-r0 +libssl1.0 libssl1.0-1.0.2q-r0 +openssl openssl-1.0.2q-r0 +libgcc libgcc-6.4.0-r9 +libstdc++ libstdc++-6.4.0-r9 +p7zip p7zip-16.02-r3 +popt popt-1.16-r7 +rsync rsync-3.1.3-r1 +tar tar-1.31-r0 +libevent libevent-2.1.8-r5 +libintl libintl-0.19.8.1-r2 +transmission-cli transmission-cli-2.94-r0 +transmission-daemon transmission-daemon-2.94-r0 +unrar unrar-5.6.4-r0 +unzip unzip-6.0-r4 From 249c717320b62929fb71810adcd2a6e0a84da56c Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 11 Feb 2019 20:01:02 -0800 Subject: [PATCH 7/7] adding dynamic readme --- README.md | 216 +++++++++++++++++++++++++++++++++--------------- readme-vars.yml | 158 ++++++++++++++--------------------- 2 files changed, 209 insertions(+), 165 deletions(-) diff --git a/README.md b/README.md index b9e8447..19c9317 100644 --- a/README.md +++ b/README.md @@ -1,72 +1,137 @@ -[linuxserverurl]: https://linuxserver.io -[forumurl]: https://forum.linuxserver.io -[ircurl]: https://www.linuxserver.io/irc/ -[podcasturl]: https://www.linuxserver.io/podcast/ -[appurl]: https://www.transmissionbt.com/ -[hub]: https://hub.docker.com/r/linuxserver/transmission/ +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] +The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :- -The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at: -* [forum.linuxserver.io][forumurl] -* [IRC][ircurl] on freenode at `#linuxserver.io` -* [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! + * regular and timely application updates + * easy user mappings (PGID, PUID) + * custom base image with s6 overlay + * weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth + * regular security updates -# linuxserver/transmission -[![](https://images.microbadger.com/badges/version/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own version badge on microbadger.com")[![](https://images.microbadger.com/badges/image/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own image badge on microbadger.com")[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/transmission.svg)][hub][![Docker Stars](https://img.shields.io/docker/stars/linuxserver/transmission.svg)][hub][![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Builders/x86-64/x86-64-transmission)](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-transmission/) +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://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). -Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more. [Transmission](http://www.transmissionbt.com/about/) +# 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. + +# [linuxserver/transmission](https://github.com/linuxserver/docker-transmission) +[![](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/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own version badge on microbadger.com") +[![](https://images.microbadger.com/badges/image/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own version badge on microbadger.com") +![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/transmission.svg) +![Docker Stars](https://img.shields.io/docker/stars/linuxserver/transmission.svg) +[![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-transmission/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-transmission/job/master/) +[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/transmission/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/transmission/latest/index.html) + +[Transmission](https://www.transmissionbt.com/) is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more. + +[![transmission](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png)](https://www.transmissionbt.com/) + +## 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). + +Simply pulling `linuxserver/transmission` 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 | +| arm64 | arm64v8-latest | +| armhf | arm32v6-latest | -[![transmission](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png)][appurl] ## Usage +Here are some example snippets to help you get started creating a container. + +### docker + ``` -docker create --name=transmission \ --v :/config \ --v :/downloads \ --v :/watch \ --e PGID= -e PUID= \ --e TZ= \ --p 9091:9091 -p 51413:51413 \ --p 51413:51413/udp \ -linuxserver/transmission +docker create \ + --name=transmission \ + -e PUID=1001 \ + -e PGID=1001 \ + -e TZ=Europe/London \ + -p 9091:9091 \ + -p 51413:51413 \ + -p 51413:51413/udp \ + -v :/config \ + -v :/downloads \ + -v :/watch \ + --restart unless-stopped \ + linuxserver/transmission +``` + + +### docker-compose + +Compatible with docker-compose v2 schemas. + +``` +--- +version: "2" +services: + transmission: + image: linuxserver/transmission + container_name: transmission + environment: + - PUID=1001 + - PGID=1001 + - TZ=Europe/London + volumes: + - :/config + - :/downloads + - :/watch + ports: + - 9091:9091 + - 51413:51413 + - 51413:51413/udp + mem_limit: 4096m + restart: unless-stopped ``` ## 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. -For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. -So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 -http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.` +Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. +| Parameter | Function | +| :----: | --- | +| `-p 9091` | WebUI | +| `-p 51413` | Torrent Port TCP | +| `-p 51413/udp` | Torrent Port UDP | +| `-e PUID=1001` | for UserID - see below for explanation | +| `-e PGID=1001` | for GroupID - see below for explanation | +| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | +| `-v /config` | Where transmission should store config files and logs. | +| `-v /downloads` | Local path for downloads. | +| `-v /watch` | Watch folder for torrent files. | -* `-p 9091` -* `-p 51413` - the port(s) -* `-v /config` - where transmission should store config files and logs -* `-v /downloads` - local path for downloads -* `-v /watch` - watch folder for torrent files -* `-e PGID` for GroupID - see below for explanation -* `-e PUID` for UserID - see below for explanation -* `-e TZ` for timezone information, eg Europe/London +## User / Group Identifiers -It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it transmission /bin/bash`. +When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. -### User / Group Identifiers +Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. -Sometimes when using data volumes (`-v` flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" ™. - -In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as below: +In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below: ``` - $ id + $ id username uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) ``` -## Setting up the application + +  +## Application Setup Webui is on port 9091, the settings.json file in /config has extra settings not available in the webui. Stop the container before editing it or any changes won't be saved. - ## Securing the webui with a username/password. this requires 3 settings to be changed in the settings.json file. @@ -89,35 +154,52 @@ The automatic update is a shell script that downloads a blocklist from the url s The automatic update will run once a day at 3am local server time. -## Info -* To monitor the logs of the container in realtime `docker logs -f transmission`. -* container version number - -`docker inspect -f '{{ index .Config.Labels "build_version" }}' transmission` +## Support Info +* Shell access whilst the container is running: `docker exec -it transmission /bin/bash` +* To monitor the logs of the container in realtime: `docker logs -f transmission` +* container version number + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' transmission` * image version number + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/transmission` -`docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/transmission` +## 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/transmission` +* Stop the running container: `docker stop transmission` +* Delete the container: `docker rm transmission` +* 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 transmission` +* You can also remove the old dangling images: `docker image prune` + +### Via Docker Compose +* Update the image: `docker-compose pull linuxserver/transmission` +* Let compose update containers as necessary: `docker-compose up -d` +* You can also remove the old dangling images: `docker image prune` ## Versions -+ **07.02.19:** Add pipeline logic and multi arch. -+ **15.08.18:** Rebase to alpine linux 3.8. -+ **12.02.18:** Pull transmission from edge repo. -+ **10.01.18:** Rebase to alpine linux 3.7. -+ **25.07.17:** Add rsync package. -+ **27.05.17:** Rebase to alpine linux 3.6. -+ **06.02.17:** Rebase to alpine linux 3.5. -+ **15.01.17:** Add p7zip, tar , unrar and unzip packages. -+ **16.10.16:** Blocklist autoupdate with optional authentication. -+ **14.10.16:** Add version layer information. -+ **23.09.16:** Add information about securing the webui to README.. -+ **21.09.16:** Add curl package. -+ **09.09.16:** Add layer badges to README. -+ **28.08.16:** Add badges to README. -+ **09.08.16:** Rebase to alpine linux. -+ **06.12.15:** Separate mapping for watch folder. -+ **16.11.15:** Initial Release. +* **07.02.19:** - Add pipeline logic and multi arch. +* **15.08.18:** - Rebase to alpine linux 3.8. +* **12.02.18:** - Pull transmission from edge repo. +* **10.01.18:** - Rebase to alpine linux 3.7. +* **25.07.17:** - Add rsync package. +* **27.05.17:** - Rebase to alpine linux 3.6. +* **06.02.17:** - Rebase to alpine linux 3.5. +* **15.01.17:** - Add p7zip, tar , unrar and unzip packages. +* **16.10.16:** - Blocklist autoupdate with optional authentication. +* **14.10.16:** - Add version layer informationE. +* **23.09.16:** - Add information about securing the webui to README. +* **21.09.16:** - Add curl package. +* **09.09.16:** - Add layer badges to README. +* **28.08.16:** - Add badges to README. +* **09.08.16:** - Rebase to alpine linux. +* **06.12.15:** - Separate mapping for watch folder. +* **16.11.15:** - Initial Release. diff --git a/readme-vars.yml b/readme-vars.yml index a1b4a55..cf82989 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -2,77 +2,53 @@ # project information project_name: transmission -full_custom_readme: | - {% raw -%} - [linuxserverurl]: https://linuxserver.io - [forumurl]: https://forum.linuxserver.io - [ircurl]: https://www.linuxserver.io/irc/ - [podcasturl]: https://www.linuxserver.io/podcast/ - [appurl]: https://www.transmissionbt.com/ - [hub]: https://hub.docker.com/r/linuxserver/transmission/ +project_url: "https://www.transmissionbt.com/" +project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png" +project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more." +project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" +project_blurb_optional_extras_enabled: false - [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] +# supported architectures +available_architectures: + - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} + - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} + - { arch: "{{ arch_armhf }}", tag: "arm32v6-latest"} - The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at: - * [forum.linuxserver.io][forumurl] - * [IRC][ircurl] on freenode at `#linuxserver.io` - * [Podcast][podcasturl] covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! +# development version +development_versions: false - # linuxserver/transmission - [![](https://images.microbadger.com/badges/version/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own version badge on microbadger.com")[![](https://images.microbadger.com/badges/image/linuxserver/transmission.svg)](https://microbadger.com/images/linuxserver/transmission "Get your own image badge on microbadger.com")[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/transmission.svg)][hub][![Docker Stars](https://img.shields.io/docker/stars/linuxserver/transmission.svg)][hub][![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Builders/x86-64/x86-64-transmission)](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-transmission/) +# container parameters +common_param_env_vars_enabled: true +param_container_name: "{{ project_name }}" +param_usage_include_net: false +param_usage_include_env: true +param_env_vars: + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } +param_usage_include_vols: true +param_volumes: + - { vol_path: "/config", vol_host_path: "", desc: "Where transmission should store config files and logs." } + - { vol_path: "/downloads", vol_host_path: "", desc: "Local path for downloads." } + - { vol_path: "/watch", vol_host_path: "", desc: "Watch folder for torrent files." } +param_usage_include_ports: true +param_ports: + - { external_port: "9091", internal_port: "9091", port_desc: "WebUI" } + - { external_port: "51413", internal_port: "51413", port_desc: "Torrent Port TCP" } + - { external_port: "51413", internal_port: "51413/udp", port_desc: "Torrent Port UDP" } +param_device_map: false +cap_add_param: false - Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client: encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support, watch directories, tracker editing, global and per-torrent speed limits, and more. [Transmission](http://www.transmissionbt.com/about/) - - [![transmission](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/transmission.png)][appurl] - - ## Usage - - ``` - docker create --name=transmission \ - -v :/config \ - -v :/downloads \ - -v :/watch \ - -e PGID= -e PUID= \ - -e TZ= \ - -p 9091:9091 -p 51413:51413 \ - -p 51413:51413/udp \ - linuxserver/transmission - ``` - - ## 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. - For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. - So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 - http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80.` - - - * `-p 9091` - * `-p 51413` - the port(s) - * `-v /config` - where transmission should store config files and logs - * `-v /downloads` - local path for downloads - * `-v /watch` - watch folder for torrent files - * `-e PGID` for GroupID - see below for explanation - * `-e PUID` for UserID - see below for explanation - * `-e TZ` for timezone information, eg Europe/London - - It is based on alpine linux with s6 overlay, for shell access whilst the container is running do `docker exec -it transmission /bin/bash`. - - ### User / Group Identifiers - - Sometimes when using data volumes (`-v` flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work" ™. - - In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as below: - - ``` - $ id - uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) - ``` - - ## Setting up the application +# optional container parameters +opt_param_usage_include_env: false +opt_param_usage_include_vols: false +opt_param_usage_include_ports: false +opt_param_device_map: false +opt_cap_add_param: false +optional_block_1: false +# application setup block +app_setup_block_enabled: true +app_setup_block: | Webui is on port 9091, the settings.json file in /config has extra settings not available in the webui. Stop the container before editing it or any changes won't be saved. - ## Securing the webui with a username/password. this requires 3 settings to be changed in the settings.json file. @@ -95,36 +71,22 @@ full_custom_readme: | The automatic update will run once a day at 3am local server time. - ## Info - - * To monitor the logs of the container in realtime `docker logs -f transmission`. - - * container version number - - `docker inspect -f '{{ index .Config.Labels "build_version" }}' transmission` - - * image version number - - `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/transmission` - - - ## Versions - - + **07.02.19:** Add pipeline logic and multi arch. - + **15.08.18:** Rebase to alpine linux 3.8. - + **12.02.18:** Pull transmission from edge repo. - + **10.01.18:** Rebase to alpine linux 3.7. - + **25.07.17:** Add rsync package. - + **27.05.17:** Rebase to alpine linux 3.6. - + **06.02.17:** Rebase to alpine linux 3.5. - + **15.01.17:** Add p7zip, tar , unrar and unzip packages. - + **16.10.16:** Blocklist autoupdate with optional authentication. - + **14.10.16:** Add version layer information. - + **23.09.16:** Add information about securing the webui to README.. - + **21.09.16:** Add curl package. - + **09.09.16:** Add layer badges to README. - + **28.08.16:** Add badges to README. - + **09.08.16:** Rebase to alpine linux. - + **06.12.15:** Separate mapping for watch folder. - + **16.11.15:** Initial Release. - {%- endraw %} +# changelog +changelogs: + - { date: "07.02.19:", desc: "Add pipeline logic and multi arch." } + - { date: "15.08.18:", desc: "Rebase to alpine linux 3.8." } + - { date: "12.02.18:", desc: "Pull transmission from edge repo." } + - { date: "10.01.18:", desc: "Rebase to alpine linux 3.7." } + - { date: "25.07.17:", desc: "Add rsync package." } + - { date: "27.05.17:", desc: "Rebase to alpine linux 3.6." } + - { date: "06.02.17:", desc: "Rebase to alpine linux 3.5." } + - { date: "15.01.17:", desc: "Add p7zip, tar , unrar and unzip packages." } + - { date: "16.10.16:", desc: "Blocklist autoupdate with optional authentication." } + - { date: "14.10.16:", desc: "Add version layer informationE." } + - { date: "23.09.16:", desc: "Add information about securing the webui to README." } + - { date: "21.09.16:", desc: "Add curl package." } + - { date: "09.09.16:", desc: "Add layer badges to README." } + - { date: "28.08.16:", desc: "Add badges to README." } + - { date: "09.08.16:", desc: "Rebase to alpine linux." } + - { date: "06.12.15:", desc: "Separate mapping for watch folder." } + - { date: "16.11.15:", desc: "Initial Release." }