mirror of
https://github.com/moby/moby.git
synced 2026-08-03 14:41:03 +00:00
- update the Dockerfile to switch to the cli-variant (as it doesn't require a docker daemon), and update to the latest v29 image - update the script to not use the deprecated libnetwork repository Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
15 lines
386 B
Bash
Executable File
15 lines
386 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# try to fetch the latest version from github
|
|
wget -O support.sh.new https://raw.githubusercontent.com/moby/moby/refs/heads/master/daemon/libnetwork/support/support.sh
|
|
|
|
if [ "$?" -eq "0" ]; then
|
|
mv support.sh.new support.sh
|
|
chmod +x support.sh
|
|
else
|
|
echo "issue fetching the latest support.sh, will use the container version"
|
|
fi
|
|
|
|
echo "run the support script"
|
|
./support.sh
|