new file: Dockerfile
new file: Jenkinsfile Initial commit
This commit is contained in:
parent
0aa1fd24cb
commit
5fd5bd7d98
39
Dockerfile
Normal file
39
Dockerfile
Normal file
@ -0,0 +1,39 @@
|
||||
# Base on latest (edge) alpine image
|
||||
FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.11
|
||||
|
||||
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
|
||||
|
||||
# Install updates
|
||||
ENV LANG='en_US.UTF-8' \
|
||||
LANGUAGE='en_US.UTF-8' \
|
||||
TERM='xterm' \
|
||||
VERSION='develop' \
|
||||
SONARR_USER='mediaservice' \
|
||||
SONARR_GROUP='mediaservice' \
|
||||
SONARR_UID='1003' \
|
||||
SONARR_GID='1003'
|
||||
|
||||
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
|
||||
apk -U update && \
|
||||
apk -U upgrade && \
|
||||
apk -U add \
|
||||
libmediainfo \
|
||||
ca-certificates \
|
||||
mono \
|
||||
&& \
|
||||
apk del make gcc g++ && \
|
||||
rm -rf /tmp/src && \
|
||||
rm -rf /var/cache/apk/*
|
||||
|
||||
RUN wget https://update.sonarr.tv/v2/master/mono/NzbDrone.master.tar.gz -O nzbdrone.tar.gz && \
|
||||
tar zxvf nzbdrone.tar.gz && \
|
||||
rm -rf nzbdrone.tar.gz && \
|
||||
addgroup -g $SONARR_GID $SONARR_GROUP && \
|
||||
adduser -D -u $SONARR_UID -G $SONARR_GROUP -H $SONARR_USER && \
|
||||
chown -R $SONARR_USER:$SONARR_GROUP /NzbDrone
|
||||
|
||||
EXPOSE 8989
|
||||
|
||||
USER $SONARR_USER
|
||||
|
||||
CMD [ "/usr/bin/mono", "--debug", "/NzbDrone/NzbDrone.exe", "/nobrowser", "/data=/config" ]
|
||||
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
node("docker-node") {
|
||||
docker.withRegistry('https://harbor.ervine.dev', 'jenkins-to-harbor') {
|
||||
|
||||
git branch: "3.11.3", url: "ssh://git@git.ervine.org:2222/jonny/x86_64-alpine-sonarr", credentialsId: 'jenkins-to-git'
|
||||
|
||||
sh "git rev-parse HEAD > .git/commit-id"
|
||||
def commit_id = readFile('.git/commit-id').trim()
|
||||
println commit_id
|
||||
|
||||
stage "build"
|
||||
def app = docker.build "library/x86_64/alpine/sonarr"
|
||||
|
||||
stage "publish"
|
||||
app.push("${env.BUILD_NUMBER}")
|
||||
app.push("latest")
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user