Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xbgmsharp/ipxe-buildweb
iPXE Prebuilt binary web interface
https://github.com/xbgmsharp/ipxe-buildweb
alpine cgi-fcgi docker docker-image ipxe ipxe-buildweb javascript perl php ubuntu
Last synced: 4 days ago
JSON representation
iPXE Prebuilt binary web interface
- Host: GitHub
- URL: https://github.com/xbgmsharp/ipxe-buildweb
- Owner: xbgmsharp
- License: gpl-3.0
- Created: 2013-04-02T01:33:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-11-16T20:23:53.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T02:16:55.965Z (3 months ago)
- Topics: alpine, cgi-fcgi, docker, docker-image, ipxe, ipxe-buildweb, javascript, perl, php, ubuntu
- Language: Perl
- Homepage:
- Size: 146 KB
- Stars: 155
- Watchers: 18
- Forks: 62
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
iPXE Prebuilt binary web interface
=====## Why
A Prebuilt binary web interface. Many users would prefer to be able to download prebuilt binary versions of iPXE, rather than building it from source.## What
A web-based user interface that provide a way for the user to select any relevant iPXE build options, specify any embedded script, etc, and then construct and download the appropriate file.## How
The user interface, is using HTML, CSS as well as Javascript (jQuery) and a suitable server-side language (such as Perl and PHP).
All GUI options (git version/nics list/compile options) are generated dynamicaly using PHP.
The build.fcgi script is written in Perl and was wrote by Michael Brown.## Using Official DockerHub image
[![dockeri.co](https://dockeri.co/image/xbgmsharp/ipxe-buildweb)](https://hub.docker.com/r/xbgmsharp/ipxe-buildweb)
* Supported tags:
`latest` - Latest ([Dockerfile](https://github.com/xbgmsharp/ipxe-buildweb/blob/master/Dockerfile))
* Supported architectures: x86-64
* Run ipxe-buildweb
After a successful [Docker installation](https://docs.docker.com/engine/installation/) you just need to execute the following command in the shell:
```bash
docker pull xbgmsharp/ipxe-buildweb
docker run -d \
--publish 8080:80 \
--publish 22:22 \
--name ipxe-buildweb \
xbgmsharp/ipxe-buildweb
```## Test using Docker
* Install Docker
[Install documentation of Docker](https://docs.docker.com/engine/installation/)```bash
$ wget http://get.docker.io/ -O - | sh
```* Build the images
The following command build the build directly from the github repository.
The build process might take some time a while as it download the origin Ubuntu LTS docker image.
```bash
$ docker build --rm=true --no-cache=true -t xbgmsharp/ipxe-buildweb github.com/xbgmsharp/ipxe-buildweb.git
```Alternatively, you can build the image localy after cloning the repository.
```bash
$ docker build --rm=true --no-cache=true -t xbgmsharp/ipxe-buildweb .
```* Run the container
Run as a detach container
```bash
$ docker run -d -p 22:22 -p 8080:80 -t xbgmsharp/ipxe-buildweb
```Or run the container with an attach shell
```
$ docker run -i --rm -p 22:22 -p 8080:80 -t xbgmsharp/ipxe-buildweb /bin/bash
```* Check the IP
```bash
$ docker ps -a
$ docker inspect CONTAINER_ID | grep IPA
```Or both command in one
```bash
$ docker ps -a | grep ipxe-buildweb | awk '{print $1}' | xargs docker inspect | grep IPAddress
```Or all in one with the ssh connection
```bash
$ ssh $(docker ps -a | grep ipxe-buildweb | awk '{print $1}' | xargs docker inspect | grep IPAddress | awk '{print $2}' | tr -d '"' | tr -d ',' )
```* Login in the container via SSH
User is root and password is admin.
```bash
$ ssh [email protected]
```* Review logs
```bash
$ docker logs CONTAINER_ID
```* Enjoy!
## Support
To get support, please create new [issue](https://github.com/xbgmsharp/ipxe-buildweb/issues)
## Contribution
I'm happy to accept Pull Requests!## License
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.