feat: Improved custom ISO support (#68)

This commit is contained in:
Kroese
2024-01-22 20:44:38 +01:00
committed by GitHub
parent 853d48e3f5
commit a5348e49ff
2 changed files with 148 additions and 75 deletions

View File

@@ -118,7 +118,7 @@ docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN dockurr/w
* ### How do I perform a manual installation?
If you prefer to perform the installation manually in order to customize some options, add the following environment variable:
If you prefer to perform the installation manually, start a clean container with the following environment variable:
```yaml
environment:
@@ -145,16 +145,14 @@ docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN dockurr/w
* ### How do I install a custom image?
In order to download a custom ISO image, specify an URL in the `VERSION` environment variable:
In order to download a custom ISO image, start a clean container with the URL specified in the `VERSION` environment variable:
```yaml
environment:
VERSION: "https://example.com/win.iso"
```
Make sure your `/storage` folder is empty before starting the container.
Alternatively, you can also place a file called `custom.iso` in that folder to skip the download.
Alternatively, you can also place a file called `custom.iso` in an empty `/storage` folder to skip the download.
* ### How do I pass-through a disk?