Files
moby/daemon/libnetwork/support/run.sh
Sebastiaan van Stijn 7b45394d42 daemon/libnetwork/support: refresh Dockerfile and script
- 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>
2026-06-16 11:38:15 +02:00

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