File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -316,12 +316,12 @@ pipeline {
316
316
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
317
317
fi
318
318
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 '\
320
320
apk info > packages && \
321
321
apk info -v > versions && \
322
322
paste -d " " packages versions > /tmp/package_versions.txt'
323
323
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 '\
325
325
apt -qq list --installed | awk "{print \$ 1,\$ 2}" > /tmp/package_versions.txt'
326
326
fi
327
327
if [ "$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )" != "${PACKAGE_TAG}" ]; then
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ services:
71
71
ldap-auth:
72
72
image: linuxserver/ldap-auth
73
73
container_name: ldap-auth
74
+ environment:
74
75
- TZ=Europe/London
75
76
ports:
76
77
- 8888:8888
You can’t perform that action at this time.
0 commit comments