Skip to content

Instantly share code, notes, and snippets.

@Adammatthiesen
Created January 13, 2024 10:13
Show Gist options
  • Save Adammatthiesen/9a920b6d9de31713ab808aad0e991ea5 to your computer and use it in GitHub Desktop.
Save Adammatthiesen/9a920b6d9de31713ab808aad0e991ea5 to your computer and use it in GitHub Desktop.
nextboot.xyz
---
version: "2.1"
services:
netbootxyz:
image: ghcr.io/netbootxyz/netbootxyz
container_name: netbootxyz
environment:
- MENU_VERSION=2.0.47 # optional
volumes:
- /path/to/config:/config # This is where you want to keep your configs, Highly recomended if you want to edit menus like I did.
- /path/to/assets:/assets # This is for HTML based assets from the webserver hosted from port 8080
ports:
- 3000:3000 #WEB-GUI
- 69:69/udp #TFTP
- 8080:80 #HTTP
restart: unless-stopped
wpeinit
net use F: \\<IP>\<SHARE>\wim-boot\<OS Source Files> /user:<User> <Pass>
F:\setup.exe
### Installers:
item --gap Installers:
#item mdt-wim ${space} Windows Deployment x64 (MDT-wim)
item win10ltsc ${space} Windows 10 Enterprise LTSC 22h2 x64 (net-iso)
item win1062023 ${space} Windows 10 June 2023 x64 (net-iso)
### Tools
item --gap Tools:
item macrium11 ${space} Macrium Reflect Win11 (net-iso)
###Installers
#:mdt-wim
#kernel wimboot
#initrd http://<IP>:<PORT>/wim-boot/MDT/ipxe/install.bat install.bat
#initrd http://<IP>:<PORT>/wim-boot/MDT/ipxe/winpeshl.ini winpeshl.ini
#initrd http://<IP>:<PORT>/wim-boot/MDT/Boot/BCD BCD
#initrd http://<IP>:<PORT>/wim-boot/MDT/Boot/boot.sdi boot.sdi
#initrd http://<IP>:<PORT>/wim-boot/MDT/boot.wim boot.wim
#boot || goto main_menu
:win10ltsc
kernel wimboot
initrd http://<IP>:<PORT>/wim-boot/Win10LTSC22h2/ipxe/install.bat install.bat
initrd http://<IP>:<PORT>/wim-boot/Win10LTSC22h2/ipxe/winpeshl.ini winpeshl.ini
initrd http://<IP>:<PORT>/wim-boot/Win10LTSC22h2/boot/bcd BCD
initrd http://<IP>:<PORT>/wim-boot/Win10LTSC22h2/boot/boot.sdi boot.sdi
initrd http://<IP>:<PORT>/wim-boot/Win10LTSC22h2/sources/boot.wim boot.wim
boot || goto main_menu
:win1062023
kernel wimboot
initrd http://<IP>:<PORT>/wim-boot/Win10_6-2023/ipxe/install.bat install.bat
initrd http://<IP>:<PORT>/wim-boot/Win10_6-2023/ipxe/winpeshl.ini winpeshl.ini
initrd http://<IP>:<PORT>/wim-boot/Win10_6-2023/boot/bcd BCD
initrd http://<IP>:<PORT>/wim-boot/Win10_6-2023/boot/boot.sdi boot.sdi
initrd http://<IP>:<PORT>/wim-boot/Win10_6-2023/sources/boot.wim boot.wim
boot || goto main_menu
###Tools
:macrium11
kernel wimboot
initrd http://<IP>:<PORT>/wim-boot/macrium/w11/Boot/BCD BCD
initrd http://<IP>:<PORT>/wim-boot/macrium/w11/Boot/boot.sdi boot.sdi
initrd http://<IP>:<PORT>/wim-boot/macrium/w11/sources/boot.wim boot.wim
boot || goto main_menu
[LaunchApps]
"install.bat"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment