dotfiles/toolboxes/README.md
Matej Focko 6346599007
feat: add playbooks for toolboxes
Signed-off-by: Matej Focko <mfocko@redhat.com>
2022-01-15 12:34:57 +01:00

24 lines
522 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Maintaining toolboxes
## How to keep Fedora toolbox up-to-date
1. Pull latest toolbox
\$ podman pull fedora-toolbox:35
2. Run the container
\$ podman run -ti fedora-toolbox:35 /bin/bash
3. Copy your current repos
\$ podman cp /etc/yum.repos.d/ container ID:/etc/
4. Run upgrade & install common packages inside the container
(container)$ dnf upgrade
(container)$ dnf install -y zsh tmux neovim ansible make
5. Commit the image
\$ podman commit container ID fedora-toolbox:35