Skip to content
Snippets Groups Projects
Commit 7b20c567 authored by Henrik Triem's avatar Henrik Triem
Browse files

Use different docker & qemu in install-docker-rpm.sh

parent e3df2c2c
No related branches found
No related tags found
No related merge requests found
Pipeline #26191 passed
......@@ -12,24 +12,18 @@ run() {
(set -x; "$@")
}
sudo mkdir -p /etc/docker
cat <<EOF |sudo tee /etc/docker/daemon.json >/dev/null
{
"registry-mirrors": ["https://mirror.gcr.io"]
}
EOF
echo "Activating RHEL 9 subscription"
sudo subscription-manager register --name=icinga-gitlab-runner-el9 --org=7980812 --activationkey=GitLab_Chahng0wah
sudo dnf clean all
sudo subscription-manager repos --enable "codeready-builder-for-rhel-9-x86_64-rpms"
sudo dnf clean all
echo "Installing Docker via get.docker.com"
run curl -LsS https://get.docker.com -o /tmp/get-docker.sh
run sh /tmp/get-docker.sh
echo "Installing Docker from CentOS"
sudo mkdir -p /etc/docker
sudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
echo "Installing QEMU and helpers"
run sudo dnf update
run sudo dnf install -y qemu-user-static binfmt-support
echo "Activating RHEL 9 subscription"
run sudo subscription-manager register --name=icinga-gitlab-runner-el9 --org=7980812 --activationkey=GitLab_Chahng0wah
run sudo dnf clean all
run sudo subscription-manager repos --enable "codeready-builder-for-rhel-9-x86_64-rpms"
sudo dnf update
sudo dnf install -y qemu-kvm
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment