You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
524 B
7 lines
524 B
REQUIRED_PKG="docker-compose" |
|
PKG_OK=$(dpkg-query -W --showformat='${Status}\n' $REQUIRED_PKG|grep "install ok installed") |
|
echo Checking for $REQUIRED_PKG: $PKG_OK |
|
if [ "" = "$PKG_OK" ]; then |
|
echo "No $REQUIRED_PKG. Setting up $REQUIRED_PKG." |
|
curl -L "https://github.com/docker/compose/releases/download/$(curl https://github.com/docker/compose/releases | grep -m1 '<a href="/docker/compose/releases/download/' | grep -o 'v[0-9:].[0-9].[0-9]')/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose |
|
fi
|
|
|