Created
August 28, 2021 19:29
-
-
Save thijsvos/a3f8d141d05969051d7659bd5b13c4be to your computer and use it in GitHub Desktop.
Install script for Podman.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
sudo apt update | |
sudo apt -y upgrade | |
. /etc/os-release | |
echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list | |
curl -L "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key" | sudo apt-key add - | |
sudo apt update | |
sudo apt -y upgrade | |
sudo apt -y install podman | |
# Usage: | |
# # wget -O - https://gist.githubu69ff309ec165f/install.sh | bash | |
# | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment