yellow: Install Podman

Podman will provide the container runtime for Home Assistant et al.
Some additional kernel features are required to run containers.
This commit is contained in:
2023-03-26 12:10:58 -05:00
parent 8d3c39373f
commit 5328e5482b
5 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports": {
"docker": {
"registry.access.redhat.com": [
{
"type": "signedBy",
"keyType": "GPGKeys",
"keyPath": "/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release"
}
],
"registry.redhat.io": [
{
"type": "signedBy",
"keyType": "GPGKeys",
"keyPath": "/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release"
}
]
},
"docker-daemon": {
"": [
{
"type": "insecureAcceptAnything"
}
]
}
}
}