Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Podman: ERRO[0000] The storage 'driver' option must be set in /etc/containers/storage.conf

I'm on Manjaro, trying Podman and getting this error when I use any podman command:

ERRO[0000] The storage 'driver' option must be set in /etc/containers/storage.conf, guarantee proper operation.

How can I solve that? Tks.

like image 398
Dav3rs Avatar asked Mar 01 '21 23:03

Dav3rs


People also ask

Where does Podman store config?

Storage root dir in which data, including images, is stored (default: “/var/lib/containers/storage” for UID 0, “$HOME/. local/share/containers/storage” for other users). Default root dir configured in /etc/containers/storage. conf .

Where does Podman storage containers?

By default, images are stored in the /var/lib/containers directory when Podman is run by the root user. For standard users, images are typically stored in $HOME/. local/share/containers/storage/ .


1 Answers

I had the same problem, try setting the option in the config file like described in the man page here. For me changing driver = "" to driver = "fuse-overlayfs" did the trick.

like image 97
Johannes G. Avatar answered Sep 28 '22 18:09

Johannes G.