I would love to install netboot.xyz or iVentoy on my machine and have it be a PXE server for my network. I’ve noticed there are no PXE server installations in the App store, is this possible? Does anyone have experience with these apps on ZimaOS and does one work better than the other?
I’m also trying to do the same thing for netboot.xyz and managed to get it started, but it’s not working yet, as now it’s my router that’s the problem. I also modified the docker-compose.yml:
services:
netbootxyz:
image: ``ghcr.io/netbootxyz/netbootxyz:latest
container_name: netbootxyz
environment:
- PUID=998 # <— Add this (match your id)
- PGID=998 # <— Add this (match your id)
- MENU_VERSION=2.0.84 # optional
- NGINX_PORT=80 # optional
- WEB_APP_PORT=3000 # optional
volumes:
- /DATA/AppData/netbootxyz/config:/config # optional
- /DATA/AppData/netbootxyz/assets:/assets # optional
ports:
- 3000:3000 # optional, destination should match ${WEB_APP_PORT} variable above.
- 69:69/udp
- 8080:80 # optional, destination should match ${NGINX_PORT} variable above.
restart: unless-stopped
For Zima, you can go to App Store > Add a containerize application > Top left corner is Import > Then you can upload thedocker-compose.yml I pasted above that will install it for you. That’s just about as far as i have gotten