2018-08-31 16:02:49 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### Create the basic Fedora Toolbox image:
|
|
|
|
```
|
|
|
|
[user@hostname fedora-toolbox]$ buildah bud --tag fedora-toolbox:28 .
|
|
|
|
STEP 1: FROM docker://registry.fedoraproject.org/fedora:28
|
|
|
|
Getting image source signatures
|
|
|
|
…
|
|
|
|
…
|
|
|
|
…
|
|
|
|
[user@hostname fedora-toolbox]$
|
|
|
|
```
|
|
|
|
Modify the Dockerfile to match your taste and Fedora version. The image should
|
|
|
|
be tagged as `fedora-toolbox` with a suffix matching the host Fedora version.
|
|
|
|
eg., `fedora-toolbox:29`, etc..
|
|
|
|
|
|
|
|
### 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
|
2018-09-12 14:29:15 +00:00
|
|
|
🔹[user@toolbox ~]$
|
2018-08-31 16:02:49 +00:00
|
|
|
```
|
|
|
|
|