Skip to content

Instantly share code, notes, and snippets.

@cpuschma
Last active July 4, 2021 12:35
Show Gist options
  • Save cpuschma/3f4c09b95f1086f8c60dc4c0357de491 to your computer and use it in GitHub Desktop.
Save cpuschma/3f4c09b95f1086f8c60dc4c0357de491 to your computer and use it in GitHub Desktop.
Install podman on Debian 10 (Buster)
#!/bin/bash
echo 'deb http://deb.debian.org/debian buster-backports main' | tee -a /etc/apt/sources.list
echo 'deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/ /' | tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
wget -O- https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/Release.key | apt-key add -
apt-get update
apt-get install -y -t buster-backports libseccomp2
apt-get install -y containernetworking-plugins apparmor apparmor-utils auditd podman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment