Skip to content

Commit 264dc8e

Browse files
Bot Updating Templated Files
1 parent 277c3ed commit 264dc8e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,12 +316,12 @@ pipeline {
316316
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
317317
fi
318318
if [ "${DIST_IMAGE}" == "alpine" ]; then
319-
docker run --rm -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} sh -c '\
319+
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
320320
apk info > packages && \
321321
apk info -v > versions && \
322322
paste -d " " packages versions > /tmp/package_versions.txt'
323323
elif [ "${DIST_IMAGE}" == "ubuntu" ]; then
324-
docker run --rm -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} sh -c '\
324+
docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
325325
apt -qq list --installed | awk "{print \$1,\$2}" > /tmp/package_versions.txt'
326326
fi
327327
if [ "$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )" != "${PACKAGE_TAG}" ]; then

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ services:
7171
ldap-auth:
7272
image: linuxserver/ldap-auth
7373
container_name: ldap-auth
74+
environment:
7475
- TZ=Europe/London
7576
ports:
7677
- 8888:8888

0 commit comments

Comments
 (0)