From 9325328bd82cc7ec2fd6cb8c1a622e58c5777119 Mon Sep 17 00:00:00 2001 From: EphemeralDev <115334775+EphemeralDev@users.noreply.github.com> Date: Sat, 25 Jan 2025 14:16:58 -0500 Subject: [PATCH] update rootless networking remove selinux section --- ubuntu.md | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/ubuntu.md b/ubuntu.md index 154eb2a..a760871 100644 --- a/ubuntu.md +++ b/ubuntu.md @@ -68,10 +68,8 @@ systemctl enable --now podman > As of Podman 5.0 Pasta is the default rootless networking tool. > > Podman 5.0 is available in standard Ubuntu repo since 24.10. - -```bash -sudo apt install passt -``` +> +> Both are installed with podman see [rootless networking for configuration](https://github.com/containers/podman/blob/main/docs/tutorials/rootless_tutorial.md#networking-configuration) ## Allow rootless binding port 80+ @@ -143,16 +141,3 @@ podman system migrate systemctl --user enable --now podman-auto-update exit ``` - -> [!WARNING] -> I disabled SELinux to not deal with this for every container. -> /etc/selinux/config -> `SELINUX=disabled` - -> [!NOTE] -> Set up the correct policies permanently instead of disabling SELinux - -Temporarily set SELinux policy to allow containers to use devices. - -```bash -setsebool -P container_use_devices 1 -```