mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
fix: make loop device during container build of ISO (#41)
* fix: make loop device during container build of ISO This creates the loop device during container runtime which allows lorax to build the ISO and not need to rely on a host provided device file. Fixes: #22 * chore: updated readme --------- Co-authored-by: Noel Miller <noelmiller@protonmail.com>
This commit is contained in:
parent
99a54d2869
commit
3401b10c56
3 changed files with 21 additions and 5 deletions
16
README.md
16
README.md
|
|
@ -16,14 +16,22 @@ This will create an ISO with the baked in defaults of the container image.
|
|||
See [Customizing](#customizing) for information about customizing the image that gets created. The variable can either be defined as environment variables or as command arguments.
|
||||
Examples:
|
||||
|
||||
Creating Bluefin GTS ISO
|
||||
Creating Universal Blue Silverblue ISO
|
||||
```bash
|
||||
docker run --rm --privileged --volume .:/isogenerator/output -e VERSION=38 -e IMAGE_NAME=bluefin -e IMAGE_TAG=gts -e VARIANT=Silverblue ghcr.io/ublue-os/isogenerator:38
|
||||
docker run --rm --privileged --volume .:/isogenerator/output -e VERSION=39 -e IMAGE_NAME=silverblue-main -e IMAGE_TAG=latest -e VARIANT=Silverblue ghcr.io/ublue-os/isogenerator:39
|
||||
```
|
||||
```bash
|
||||
# Requires sudo to run
|
||||
sudo podman run --rm --privileged --volume .:/isogenerator/output -e VERSION=39 -e IMAGE_NAME=silverblue-main -e IMAGE_TAG=latest -e VARIANT=Silverblue ghcr.io/ublue-os/isogenerator:39
|
||||
```
|
||||
|
||||
Creating Bazzite Latest ISO
|
||||
Creating Universal Blue Kinoite ISO
|
||||
```bash
|
||||
docker run --rm --privileged --volume .:/isogenerator/output -e VERSION=39 -e IMAGE_NAME=bazzite -e IMAGE_TAG=latest -e VARIANT=Kinoite ghcr.io/ublue-os/isogenerator:39
|
||||
docker run --rm --privileged --volume .:/isogenerator/output -e VERSION=39 -e IMAGE_NAME=kinoite-main -e IMAGE_TAG=latest -e VARIANT=Kinoite ghcr.io/ublue-os/isogenerator:39
|
||||
```
|
||||
```bash
|
||||
# Requires sudo to run
|
||||
sudo podman run --rm --privileged --volume .:/isogenerator/output -e VERSION=39 -e IMAGE_NAME=kinoite-main -e IMAGE_TAG=latest -e VARIANT=Kinoite ghcr.io/ublue-os/isogenerator:39
|
||||
```
|
||||
|
||||
## Customizing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue