Browse Source

make sure armhf is allowed on aarch64

feature/more-args
nicolas.dorier 6 years ago
parent
commit
c8fbf995bf
  1. 3
      btcpay-setup.sh

3
btcpay-setup.sh

@ -254,6 +254,9 @@ if ! [ -x "$(command -v docker)" ] || ! [ -x "$(command -v docker-compose)" ]; t
if [[ "$RELEASE" == "bionic" ]]; then
RELEASE=xenial
fi
if [ -x "$(command -v dpkg)" ]; then
dpkg --add-architecture armhf
fi
add-apt-repository "deb https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $RELEASE stable"
apt-get update -y
apt-get install -y docker-ce:armhf

Loading…
Cancel
Save