mirror of
https://github.com/dockur/windows.git
synced 2024-11-02 19:51:49 +00:00
feat: Support more image layouts (#54)
This commit is contained in:
parent
82bccfc43d
commit
5137d513fc
3 changed files with 166 additions and 31 deletions
20
readme.md
20
readme.md
|
@ -73,13 +73,15 @@ docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN dockurr/w
|
|||
|
||||
Select from the values below:
|
||||
|
||||
- ```win11``` (Windows 11)
|
||||
- ```win10``` (Windows 10)
|
||||
- ```win81``` (Windows 8.1)
|
||||
- ```win22``` (Windows Server 2022)
|
||||
- ```win19``` (Windows Server 2019)
|
||||
- ```win16``` (Windows Server 2016)
|
||||
|
||||
- ```win11``` = Windows 11
|
||||
- ```win10``` = Windows 10
|
||||
- ```win81``` = Windows 8.1
|
||||
- ```win22``` = Windows Server 2022
|
||||
- ```win19``` = Windows Server 2019
|
||||
- ```win16``` = Windows Server 2016
|
||||
- ```tiny11``` = Tiny11 (Slow download)
|
||||
- ```tiny10``` = Tiny10 (Slow download)
|
||||
|
||||
* ### How do I increase the amount of CPU or RAM?
|
||||
|
||||
By default, 2 CPU cores and 4 GB of RAM are allocated to the container, as those are the minimum requirements of Windows 11.
|
||||
|
@ -143,14 +145,14 @@ docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN dockurr/w
|
|||
|
||||
* ### How do I install an unsupported version?
|
||||
|
||||
You can specify an URL in the `VERSION` environment variable, in order to download a custom ISO file:
|
||||
You can specify an URL in the `VERSION` environment variable, in order to download a custom ISO image:
|
||||
|
||||
```yaml
|
||||
environment:
|
||||
VERSION: "https://example.com/win.iso"
|
||||
```
|
||||
|
||||
During the installation you will need to add some drivers as described in [manual installation](https://github.com/dockur/windows/tree/master?tab=readme-ov-file#how-do-i-perform-a-manual-installation) above.
|
||||
During the installation you may need to add some drivers as described in [manual installation](https://github.com/dockur/windows/tree/master?tab=readme-ov-file#how-do-i-perform-a-manual-installation) above.
|
||||
|
||||
* ### How do I pass-through a disk?
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ set -Eeuo pipefail
|
|||
|
||||
echo "❯ Starting Windows for Docker v$(</run/version)..."
|
||||
echo "❯ For support visit https://github.com/dockur/windows"
|
||||
echo
|
||||
|
||||
export BOOT_MODE=windows
|
||||
|
||||
|
@ -23,7 +24,7 @@ if [[ "${DISPLAY,,}" == "web" ]]; then
|
|||
nginx -e stderr
|
||||
fi
|
||||
|
||||
info "Booting Windows using $VERS..."
|
||||
echo && info "Booting Windows using $VERS..."
|
||||
|
||||
[[ "$DEBUG" == [Yy1]* ]] && set -x
|
||||
exec qemu-system-x86_64 ${ARGS:+ $ARGS}
|
||||
|
|
174
src/install.sh
174
src/install.sh
|
@ -1,12 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
set -Eeuo pipefail
|
||||
|
||||
: "${MANUAL:="N"}"
|
||||
: "${EXTERNAL:="N"}"
|
||||
: "${MANUAL:=""}"
|
||||
: "${EXTERNAL:=""}"
|
||||
: "${VERSION:="win11x64"}"
|
||||
|
||||
[[ "${VERSION,,}" == "http"* ]] && EXTERNAL="Y"
|
||||
|
||||
[[ "${VERSION,,}" == "11" ]] && VERSION="win11x64"
|
||||
[[ "${VERSION,,}" == "win11" ]] && VERSION="win11x64"
|
||||
|
||||
|
@ -34,6 +32,20 @@ set -Eeuo pipefail
|
|||
[[ "${VERSION,,}" == "win16" ]] && VERSION="win2016-eval"
|
||||
[[ "${VERSION,,}" == "win2016" ]] && VERSION="win2016-eval"
|
||||
|
||||
if [[ "${VERSION,,}" == "tiny10" ]]; then
|
||||
VERSION="https://archive.org/download/tiny-10-23-h2/tiny10%20x64%2023h2.iso"
|
||||
fi
|
||||
|
||||
if [[ "${VERSION,,}" == "tiny11" ]]; then
|
||||
VERSION="https://archive.org/download/tiny-11-core-x-64-beta-1/tiny11%20core%20x64%20beta%201.iso"
|
||||
fi
|
||||
|
||||
if [[ "${VERSION,,}" == "http"* ]]; then
|
||||
EXTERNAL="Y"
|
||||
else
|
||||
EXTERNAL="N"
|
||||
fi
|
||||
|
||||
MSG="Please wait while Windows is being started..."
|
||||
|
||||
if [ ! -f "$STORAGE/custom.iso" ]; then
|
||||
|
@ -72,7 +84,8 @@ fi
|
|||
[ -f "$STORAGE/$BASE" ] && return 0
|
||||
|
||||
TMP="$STORAGE/tmp"
|
||||
rm -rf "$TMP" && mkdir -p "$TMP"
|
||||
rm -rf "$TMP"
|
||||
mkdir -p "$TMP"
|
||||
|
||||
ISO="$TMP/$BASE"
|
||||
rm -f "$ISO"
|
||||
|
@ -102,48 +115,167 @@ else
|
|||
|
||||
{ wget "$VERSION" -O "$ISO" -q --no-check-certificate --show-progress "$PROGRESS"; rc=$?; } || :
|
||||
|
||||
(( rc != 0 )) && error "Failed to download $VERSION, reason: $rc" && exit 60
|
||||
(( rc != 0 )) && echo && error "Failed to download $VERSION, reason: $rc" && exit 60
|
||||
|
||||
fi
|
||||
|
||||
[ ! -f "$ISO" ] && error "Failed to download $VERSION" && exit 61
|
||||
[ ! -f "$ISO" ] && echo && error "Failed to download $VERSION" && exit 61
|
||||
|
||||
SIZE=$(stat -c%s "$ISO")
|
||||
|
||||
if ((SIZE<10000000)); then
|
||||
error "Invalid ISO file: Size is smaller than 10 MB" && exit 62
|
||||
echo && error "Invalid ISO file: Size is smaller than 10 MB" && exit 62
|
||||
fi
|
||||
|
||||
info "Preparing ISO image for installation..."
|
||||
echo && info "Extracting downloaded ISO image..."
|
||||
|
||||
DIR="$TMP/unpack"
|
||||
rm -rf "$DIR"
|
||||
|
||||
7z x "$ISO" -o"$DIR"
|
||||
7z x "$ISO" -o"$DIR" > /dev/null
|
||||
echo
|
||||
|
||||
XML=""
|
||||
FB="falling back to manual installation!"
|
||||
|
||||
if [ -z "$MANUAL" ]; then
|
||||
|
||||
MANUAL="N"
|
||||
|
||||
if [[ "$EXTERNAL" == [Yy1]* ]]; then
|
||||
[[ "${BASE,,}" == "tiny10"* ]] && MANUAL="Y"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
if [[ "$MANUAL" != [Yy1]* ]]; then
|
||||
if [[ "$EXTERNAL" != [Yy1]* ]]; then
|
||||
if [ -f "/run/assets/$VERSION.xml" ]; then
|
||||
|
||||
wimlib-imagex update "$DIR/sources/boot.wim" 2 \
|
||||
--command "add /run/assets/$VERSION.xml /autounattend.xml"
|
||||
XML="$VERSION.xml"
|
||||
|
||||
else
|
||||
|
||||
info "Detecting Windows version from ISO image..."
|
||||
|
||||
LOC="$DIR/sources/install.wim"
|
||||
[ ! -f "$LOC" ] && LOC="$DIR/sources/install.esd"
|
||||
|
||||
if [ -f "$LOC" ]; then
|
||||
|
||||
DETECTED=""
|
||||
TAG="DISPLAYNAME"
|
||||
RESULT=$(wimlib-imagex info -xml "$LOC" | tr -d '\000')
|
||||
NAME=$(sed -n "/$TAG/{s/.*<$TAG>\(.*\)<\/$TAG>.*/\1/;p}" <<< "$RESULT")
|
||||
|
||||
if [ -z "$NAME" ]; then
|
||||
TAG="PRODUCTNAME"
|
||||
NAME=$(sed -n "/$TAG/{s/.*<$TAG>\(.*\)<\/$TAG>.*/\1/;p}" <<< "$RESULT")
|
||||
fi
|
||||
|
||||
[[ "${NAME,,}" == "windows 11"* ]] && DETECTED="win11x64"
|
||||
[[ "${NAME,,}" == "windows 10"* ]] && DETECTED="win10x64"
|
||||
[[ "${NAME,,}" == "windows 8"* ]] && DETECTED="win81x64"
|
||||
[[ "${NAME,,}" == *"server 2022"* ]] && DETECTED="win2022-eval"
|
||||
[[ "${NAME,,}" == *"server 2019"* ]] && DETECTED="win2019-eval"
|
||||
[[ "${NAME,,}" == *"server 2016"* ]] && DETECTED="win2016-eval"
|
||||
|
||||
if [ -n "$DETECTED" ]; then
|
||||
|
||||
XML="$DETECTED.xml"
|
||||
echo "Detected image of type '$DETECTED', will apply autounattend.xml file."
|
||||
|
||||
else
|
||||
if [ -z "$NAME" ]; then
|
||||
error "Warning: failed to detect Windows version from image, $FB"
|
||||
else
|
||||
if [[ "${NAME,,}" == "windows 7" ]]; then
|
||||
error "Warning: detected Windows 7 image, $FB"
|
||||
else
|
||||
error "Warning: failed to detect Windows version from string '$NAME', $FB"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
else
|
||||
error "Warning: failed to locate 'install.wim' or 'install.esd' in ISO image, $FB"
|
||||
fi
|
||||
echo
|
||||
fi
|
||||
fi
|
||||
|
||||
LABEL="${BASE%.*}"
|
||||
LABEL="${LABEL::32}"
|
||||
ASSET="/run/assets/$XML"
|
||||
|
||||
ISO="$TMP/$LABEL.tmp"
|
||||
rm -f "$ISO"
|
||||
if [ -f "$ASSET" ]; then
|
||||
|
||||
genisoimage -b boot/etfsboot.com -no-emul-boot -c BOOT.CAT -iso-level 4 -J -l -D -N -joliet-long -relaxed-filenames \
|
||||
-v -V "$LABEL" -udf -boot-info-table -eltorito-alt-boot -eltorito-boot efi/microsoft/boot/efisys_noprompt.bin \
|
||||
-no-emul-boot -o "$ISO" -allow-limited-size "$DIR"
|
||||
LOC="$DIR/sources/boot.wim"
|
||||
[ ! -f "$LOC" ] && LOC="$DIR/sources/boot.esd"
|
||||
|
||||
if [ -f "$LOC" ]; then
|
||||
|
||||
info "Adding XML file for automatic installation..."
|
||||
|
||||
RESULT=$(wimlib-imagex info -xml "$LOC" | tr -d '\000')
|
||||
|
||||
if [[ "${RESULT^^}" == *"<IMAGE INDEX=\"2\">"* ]]; then
|
||||
INDEX="2"
|
||||
else
|
||||
INDEX="1"
|
||||
fi
|
||||
|
||||
wimlib-imagex update "$LOC" "$INDEX" --command "add $ASSET /autounattend.xml" > /dev/null
|
||||
|
||||
else
|
||||
error "Warning: failed to locate 'boot.wim' or 'boot.esd' in ISO image, $FB"
|
||||
fi
|
||||
|
||||
LOC="$DIR/autounattend.xml"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/Autounattend.xml"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/AutoUnattend.xml"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/autounattend.XML"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/Autounattend.XML"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/AutoUnattend.XML"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/AUTOUNATTEND.xml"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
LOC="$DIR/AUTOUNATTEND.XML"
|
||||
[ -f "$LOC" ] && mv -f "$ASSET" "$LOC"
|
||||
|
||||
echo
|
||||
|
||||
else
|
||||
[ -n "$XML" ] && error "Warning: XML file '$XML' does not exist, $FB" && echo
|
||||
fi
|
||||
|
||||
info "Generating new ISO image for installation..."
|
||||
|
||||
ETFS="boot/etfsboot.com"
|
||||
EFISYS="efi/microsoft/boot/efisys_noprompt.bin"
|
||||
|
||||
if [ -f "$DIR/$ETFS" ]; then
|
||||
if [ -f "$DIR/$EFISYS" ]; then
|
||||
|
||||
CAT="BOOT.CAT"
|
||||
LABEL="${BASE%.*}"
|
||||
LABEL="${LABEL::32}"
|
||||
ISO="$TMP/$LABEL.tmp"
|
||||
rm -f "$ISO"
|
||||
|
||||
genisoimage -b "$ETFS" -no-emul-boot -c "$CAT" -iso-level 4 -J -l -D -N -joliet-long -relaxed-filenames -quiet -V "$LABEL" -udf \
|
||||
-boot-info-table -eltorito-alt-boot -eltorito-boot "$EFISYS" -no-emul-boot -o "$ISO" -allow-limited-size "$DIR"
|
||||
|
||||
else
|
||||
error "Failed to locate file 'efisys_noprompt.bin' in ISO image, $FB"
|
||||
fi
|
||||
else
|
||||
error "Failed to locate file 'etfsboot.com' in ISO image, $FB"
|
||||
fi
|
||||
|
||||
mv "$ISO" "$STORAGE/$BASE"
|
||||
|
||||
rm -rf "$TMP"
|
||||
|
||||
echo
|
||||
return 0
|
||||
|
|
Loading…
Reference in a new issue