|
||
---|---|---|
.. | ||
cpp.yml | ||
haskell.yml | ||
README.md |
Maintaining toolboxes
How to keep Fedora toolbox up-to-date
-
Pull latest toolbox
$ podman pull fedora-toolbox:35
-
Run the container
$ podman run -ti fedora-toolbox:35 /bin/bash
-
Copy your current repos
$ podman cp /etc/yum.repos.d/ ‹container ID›:/etc/
-
Run upgrade & install common packages inside the container
(container)$ dnf upgrade (container)$ dnf install -y zsh tmux neovim ansible make
-
Commit the image
$ podman commit ‹container ID› fedora-toolbox:35