You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setup correct user namespace subuid and subgid mapping
sudo usermod --add-subuids $(($(id -u) +1))-$((2*$(id -u) +1))"$(id -un)"
sudo usermod --add-subgids $(($(id -g) +1))-$((2*$(id -g) +1))"$(id -un)"# make sure we don't have missconfigured system
sudo chown $(id -u):$(id -g) /run/user/$(id -u)/containers
#apply the change
podman system migrate
# check UID/GID mapping inside containers
podman unshare cat /proc/self/uid_map
podman unshare cat /proc/self/gid_map
Edit storage.conf to bypass "chown:permission denied" errors
vim /etc/containers/storage.conf
#uncomment line 70 and change false to true
ignore_chown_errors = "true"#write and quit
:wq
#apply the change
podman system migrate