From 5adc63acda3267c9e3ed9b25bb12298681f31717 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Wed, 14 Oct 2020 15:16:56 +0800 Subject: [PATCH] Increased UID and GID to comply with synology UID numbers --- Dockerfile | 4 ++-- Jenkinsfile | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9fb1b78..59a6287 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ ENV LANG='en_US.UTF-8' \ VERSION='develop' \ SONARR_USER='sonarr' \ SONARR_GROUP='sonarr' \ - SONARR_UID='1003' \ - SONARR_GID='1003' + SONARR_UID='1027' \ + SONARR_GID='1027' RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \ apk -U update && \ diff --git a/Jenkinsfile b/Jenkinsfile index 14182ad..e63e746 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,10 +30,9 @@ spec: sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2.0.0.5344 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2' } } + stage('Notify gchat') { + hangoutsNotify message: "Sonarr 2 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + } } } -stage('Notify gchat') { - hangoutsNotify message: "Sonarr 2 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false -} -