hexfusion / avalanchego

Go implementation of an Avalanche node.
https://avax.network
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Install podman #12

Closed hexfusion closed 1 year ago

hexfusion commented 1 year ago

Why this should be merged

Ubuntu LTS only support podman v3

script might also need to check for a container policy.

cat ~/.config/containers/policy.json
{
    "default": [
        {
            "type": "insecureAcceptAnything"
        }
    ],
    "transports":
        {
            "docker-daemon":
                {
                    "": [{"type":"insecureAcceptAnything"}]
                }
        }
}

ensure podman rootless works after restart "run as local user"

systemctl enable --user podman.socket systemctl start --user podman.socket systemctl status --user podman.socket

How this works

How this was tested