mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
* feat(build): introducing buildx for Windows * feat(build): re-ordered USER * feat(build): Fixed Typo * feat(build): fixed typo Co-authored-by: ssbkang <skan070@gmail.com>
23 lines
767 B
Bash
Executable file
23 lines
767 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PLATFORM=$1
|
|
ARCH=$2
|
|
DOCKER_VERSION=$3
|
|
|
|
DOWNLOAD_FOLDER=".tmp/download"
|
|
|
|
rm -rf "${DOWNLOAD_FOLDER}"
|
|
mkdir -pv "${DOWNLOAD_FOLDER}"
|
|
|
|
if [ "${PLATFORM}" == 'win' ]; then
|
|
wget -O "${DOWNLOAD_FOLDER}/docker-binaries.zip" "https://dockermsft.azureedge.net/dockercontainer/docker-${DOCKER_VERSION}.zip"
|
|
unzip "${DOWNLOAD_FOLDER}/docker-binaries.zip" -d "${DOWNLOAD_FOLDER}"
|
|
mv "${DOWNLOAD_FOLDER}/docker/docker.exe" dist/
|
|
mv ${DOWNLOAD_FOLDER}/docker/*.dll dist/
|
|
else
|
|
wget -O "${DOWNLOAD_FOLDER}/docker-binaries.tgz" "https://download.docker.com/${PLATFORM}/static/stable/${ARCH}/docker-${DOCKER_VERSION}.tgz"
|
|
tar -xf "${DOWNLOAD_FOLDER}/docker-binaries.tgz" -C "${DOWNLOAD_FOLDER}"
|
|
mv "${DOWNLOAD_FOLDER}/docker/docker" dist/
|
|
fi
|
|
|
|
exit 0
|