'update files with ansible'

This commit is contained in:
jonny 2021-03-11 15:17:29 +00:00
parent d301aee808
commit c16c06d2cc
2 changed files with 9 additions and 13 deletions

View File

@ -1,28 +1,24 @@
# Base on latest (edge) alpine image # Base on latest (edge) alpine image
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13 FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.1
LABEL maintainer="Jonathan Ervine <docker@ervine.org>" LABEL Maintainer="Jonathan Ervine docker@ervine.org"
LABEL build-date="02 10 2020" LABEL build-date="02 10 2020"
# Install updates # Install updates
ENV LANG='en_US.UTF-8' \ ENV LANG='en_US.UTF-8' \
LANGUAGE='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \
TERM='xterm' \ TERM='xterm'
TORRENT_USER='torrent' \
TORRENT_UID='1027' \
TORRENT_GID='1027'
RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \
apk update && \ apk update && \
apk -U upgrade --ignore alpine-baselayout && \ apk -U upgrade --ignore alpine-baselayout && \
apk -U add \ apk -U add transmission-daemon && \
transmission-daemon && \
wget https://github.com/Secretmapper/combustion/archive/release.zip && \ wget https://github.com/Secretmapper/combustion/archive/release.zip && \
unzip release.zip && \ unzip release.zip && \
mv combustion-release/* /usr/share/transmission/web/ && \ mv combustion-release/* /usr/share/transmission/web/ && \
rmdir combustion-release && \ rmdir combustion-release && \
addgroup -g $TORRENT_GID $TORRENT_USER && \ addgroup -g 1027 torrent && \
adduser -D -u $TORRENT_UID -G $TORRENT_USER -H $TORRENT_USER && \ adduser -D -u 1027 -G torrent -H torrent && \
rm release.zip rm release.zip
RUN rm -rf /var/cache/apk/* RUN rm -rf /var/cache/apk/*
@ -31,6 +27,6 @@ EXPOSE 9091 56451 56451/udp
VOLUME /config VOLUME /config
#USER $TORRENT_USER #USER torrent
CMD [ "/usr/bin/transmission-daemon", "-f", "-g", "/config/" ] CMD [ "/usr/bin/transmission-daemon", "-f", "-g", "/config/" ]

4
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ kind: Pod
spec: spec:
containers: containers:
- name: kaniko - name: kaniko
image: gcr.io/kaniko-project/executor:debug-539ddefcae3fd6b411a95982a830d987f4214251 image: gcr.io/kaniko-project/executor:debug
imagePullPolicy: Always imagePullPolicy: Always
command: command:
- /busybox/cat - /busybox/cat
@ -27,7 +27,7 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-transmission.git', credentialsId: 'jenkins-to-git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-transmission.git', credentialsId: 'jenkins-to-git'
container('kaniko') { container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/transmission:v3.13 --destination=harbor.ervine.dev/public/x86_64/alpine/transmission:v3.13.0' sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine//transmission:v3.13.1'
} }
} }
stage('Notify gchat') { stage('Notify gchat') {