Skip to content

Instantly share code, notes, and snippets.

@thijsvos
Created August 28, 2021 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thijsvos/a3f8d141d05969051d7659bd5b13c4be to your computer and use it in GitHub Desktop.
Save thijsvos/a3f8d141d05969051d7659bd5b13c4be to your computer and use it in GitHub Desktop.
Install script for Podman.
#! /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