Skip to content

Commit

Permalink
Bump docker to 19.03.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stefaang committed Oct 3, 2019
1 parent 7173e36 commit 1133c08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion wdpk/docker/apkg.rc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: docker
Version: 18.09.1
Version: 19.03.2
Packager: TFL
Email:
Homepage: https://docker.com
Expand Down
14 changes: 5 additions & 9 deletions wdpk/docker/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,19 @@ ARCH="$(uname -m)"

# download docker binaries
cd "${APKG_PATH}"
TARBALL="docker-18.09.1.tgz"
TARBALL="docker-19.03.2.tgz"

if [ ${ARCH} != "x86_64" ]; then
ARCH="armel"
# JediNite provides custom docker packages for ARM
# They are based on docker-runc without seccomp, as the kernel doesn't support it
# The latest version is not available yet
wget "https://github.com/JediNite/docker-ce-WDEX4100-binaries/raw/master/armv7l-WDEX4100/${TARBALL}" --no-check-certificate
URL="https://github.com/JediNite/docker-ce-WDEX4100-binaries/raw/master/armv7l-WDEX4100/${TARBALL}"
else
wget "https://download.docker.com/linux/static/stable/${ARCH}/${TARBALL}" --no-check-certificate
URL="https://download.docker.com/linux/static/stable/${ARCH}/${TARBALL}"
fi

# extract the package
tar xzf ${TARBALL} >> $log 2>&1

# remove the package
rm ${TARBALL}
# download and extract the package
curl -L "${URL}" | tar xz >> $log 2>&1

# stop original docker v1.7
if [ -e "${ORIG_DAEMONSH}" ]; then
Expand Down

0 comments on commit 1133c08

Please sign in to comment.