Tool for interactive command line environments on Linux
Find a file
Debarshi Ray 07b37dbc2a Style fix
This reduces one level of indentation and makes the code more readable.
2018-09-26 16:59:38 +02:00
images/fedora Add fedora-toolbox image definitions for Fedoras 29 and 30 2018-09-26 16:37:46 +02:00
fedora-toolbox Style fix 2018-09-26 16:59:38 +02:00
fedora-toolbox-sudo Allow running under sudo(8) when desired 2018-09-20 21:15:09 +02:00
LICENSE Initial revision 2018-08-31 18:38:01 +02:00
README.md Make room for Dockerfiles for multiple operating system versions 2018-09-26 16:33:17 +02:00

Fedora Toolbox — Hacking on your OSTree-based Fedora

Fedora Toolbox is a tool that offers a familiar RPM based environment for developing and debugging software on locked down OSTree based Fedora systems like Silverblue. Such operating systems are shipped as immutable OSTree images, where it's difficult to setup a development environment with your favorite tools, editors and SDKs. A toolbox container solves that problem by providing a RPM based mutable container. You can tweak it to your heart's content and use DNF to install your favorite packages, all without worrying about breaking your operating system.

The toolbox environment is based on the fedora-toolbox image. This image is then customized for the current user to create a toolbox container that seamlessly integrates with the rest of the operating system.

Usage

Create the basic Fedora Toolbox image:

Use one of the sub-directories under images to create a fedora-toolbox image for a Fedora version that matches your host. eg., let's say we have a Fedora 28 host.

[user@hostname fedora-toolbox]$ cd images/fedora/f28
[user@hostname f28]$ buildah bud --tag fedora-toolbox:28 images/fedora/f28
STEP 1: FROM docker://registry.fedoraproject.org/fedora:28
Getting image source signatures
…
…
…
[user@hostname fedora-toolbox]$

Note that the image should be tagged as fedora-toolbox with a suffix matching the host Fedora version. In this example, it should be fedora-toolbox:28.

Create your Fedora Toolbox container:

[user@hostname fedora-toolbox]$ ./fedora-toolbox create
[user@hostname fedora-toolbox]$

This will create a container, and an image, called fedora-toolbox-<your-username>:28 that's specifically customised for your host user.

Enter the Toolbox:

[user@hostname fedora-toolbox]$ ./fedora-toolbox enter
🔹[user@toolbox ~]$