Compare commits

..

No commits in common. "da308b7e89ce3ddafcd6b8237ed77b199a3415e0" and "0b7e8f01becd950eb22c478c7220612b967336ed" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -19,14 +19,13 @@ RUN set -eu && \
libxml2-utils \
libarchive-tools \
netcat-openbsd && \
wget "https://github.com/gershnik/wsdd-native/releases/download/v1.21/wsddn_1.21_amd64.deb" -O /tmp/wsddn.deb -q && \
dpkg -i /tmp/wsddn.deb && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY --chmod=755 ./src /run/
COPY --chmod=755 ./assets /run/assets
ADD --chmod=755 https://raw.githubusercontent.com/christgau/wsdd/refs/tags/v0.9/src/wsdd.py /usr/sbin/wsdd
ADD --chmod=664 https://github.com/qemus/virtiso-whql/releases/download/v1.9.47-0/virtio-win-1.9.47.tar.xz /var/drivers.txz
FROM dockurr/windows-arm:${VERSION_ARG} AS build-arm64

View File

@ -139,7 +139,7 @@ kubectl apply -f https://raw.githubusercontent.com/dockur/windows/refs/heads/mas
```
> [!TIP]
> This can also be used to resize the existing disk to a larger capacity without any data loss. However you will need to [manually extend the disk partition](https://learn.microsoft.com/en-us/windows-server/storage/disk-management/extend-a-basic-volume?tabs=disk-management) since the added disk space will appear as unallocated.
> This can also be used to resize the existing disk to a larger capacity without any data loss.
### How do I share files with the host?

View File

@ -129,7 +129,8 @@ if [[ "${BOOT_MODE:-}" == "windows_legacy" ]]; then
fi
else
# Enable Web Service Discovery on Vista and up
wsddn -i "$interface" -H "$hostname" --pid-file=/var/run/wsdd.pid >/dev/null &
wsdd -i "$interface" -p -n "$hostname" &
echo "$!" > /var/run/wsdd.pid
fi
return 0