Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netbootxyz/webapp
NodeJS helper Application for managing local deployments of netboot.xyz
https://github.com/netbootxyz/webapp
hacktoberfest ipxe netbootxyz nodejs webapp
Last synced: 2 months ago
JSON representation
NodeJS helper Application for managing local deployments of netboot.xyz
- Host: GitHub
- URL: https://github.com/netbootxyz/webapp
- Owner: netbootxyz
- License: apache-2.0
- Created: 2019-12-03T04:29:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T19:38:39.000Z (8 months ago)
- Last Synced: 2024-05-22T20:45:41.605Z (8 months ago)
- Topics: hacktoberfest, ipxe, netbootxyz, nodejs, webapp
- Language: EJS
- Homepage: https://netboot.xyz/docs/docker
- Size: 393 KB
- Stars: 41
- Watchers: 6
- Forks: 10
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# netboot.xyz webapp
This repo houses the netboot.xyz webapp that
provides a web interface for editing iPXE files
and downloading assets locally to the app.## Building netboot.xyz webapp locally
```bash
docker build . -t netbootxyz-webapp
```## Running it locally
```bash
docker run -d \
--name=netbootxyz-webapp \
-e MENU_VERSION=2.0.73 `# optional` \
-p 3000:3000 `# sets webapp port` \
-p 69:69/udp `# sets tftp port` \
-p 8080:80 `# optional` \
-v /local/path/to/config:/config `# optional` \
-v /local/path/to/assets:/assets `# optional` \
--restart unless-stopped \
netbootxyz-webapp
```* Port 3000- Web Application
* Port 8080- NGINX Webserver for local asset hosting
* Port 69- TFTP server for menus/kpxe files