diff --git a/hosting/scripts/install-docker-compose.sh b/hosting/scripts/linux/install-docker-compose.sh similarity index 100% rename from hosting/scripts/install-docker-compose.sh rename to hosting/scripts/linux/install-docker-compose.sh diff --git a/hosting/scripts/linux/install-docker.sh b/hosting/scripts/linux/install-docker.sh new file mode 100755 index 0000000000..dccf688de1 --- /dev/null +++ b/hosting/scripts/linux/install-docker.sh @@ -0,0 +1,14 @@ +#!/bin/bash +sudo apt-get install \ + apt-transport-https \ + ca-certificates \ + curl \ + gnupg-agent \ + software-properties-common +curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - +sudo add-apt-repository \ + "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ + $(lsb_release -cs) \ + stable" +sudo apt-get update +sudo apt-get install docker-ce docker-ce-cli containerd.io diff --git a/hosting/scripts/release-to-docker-hub.sh b/hosting/scripts/linux/release-to-docker-hub.sh similarity index 100% rename from hosting/scripts/release-to-docker-hub.sh rename to hosting/scripts/linux/release-to-docker-hub.sh