{"id":13510636,"url":"https://github.com/xbgmsharp/ipxe-buildweb","last_synced_at":"2025-08-09T15:27:37.362Z","repository":{"id":7789930,"uuid":"9159949","full_name":"xbgmsharp/ipxe-buildweb","owner":"xbgmsharp","description":"iPXE Prebuilt binary web interface","archived":false,"fork":false,"pushed_at":"2022-11-16T20:23:53.000Z","size":150,"stargazers_count":160,"open_issues_count":17,"forks_count":63,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-17T11:09:35.737Z","etag":null,"topics":["alpine","cgi-fcgi","docker","docker-image","ipxe","ipxe-buildweb","javascript","perl","php","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xbgmsharp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-04-02T01:33:13.000Z","updated_at":"2025-03-08T04:44:31.000Z","dependencies_parsed_at":"2023-01-13T14:30:10.953Z","dependency_job_id":null,"html_url":"https://github.com/xbgmsharp/ipxe-buildweb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbgmsharp%2Fipxe-buildweb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbgmsharp%2Fipxe-buildweb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbgmsharp%2Fipxe-buildweb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xbgmsharp%2Fipxe-buildweb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xbgmsharp","download_url":"https://codeload.github.com/xbgmsharp/ipxe-buildweb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245267396,"owners_count":20587458,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alpine","cgi-fcgi","docker","docker-image","ipxe","ipxe-buildweb","javascript","perl","php","ubuntu"],"created_at":"2024-08-01T02:01:48.024Z","updated_at":"2025-03-27T00:08:22.497Z","avatar_url":"https://github.com/xbgmsharp.png","language":"Perl","funding_links":[],"categories":["Perl","ubuntu"],"sub_categories":[],"readme":"iPXE Prebuilt binary web interface\n=====\n\n## Why\nA Prebuilt binary web interface. Many users would prefer to be able to download prebuilt binary versions of iPXE, rather than building it from source.\n\n## What\nA 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.\n\n## How\nThe user interface, is using HTML, CSS as well as Javascript (jQuery) and a suitable server-side language (such as Perl and PHP).\nAll GUI options (git version/nics list/compile options) are generated dynamicaly using PHP.\nThe build.fcgi script is written in Perl and was wrote by Michael Brown.\n\n## Using Official DockerHub image\n\n[![dockeri.co](https://dockeri.co/image/xbgmsharp/ipxe-buildweb)](https://hub.docker.com/r/xbgmsharp/ipxe-buildweb)\n\n* Supported tags:\n\n`latest` - Latest ([Dockerfile](https://github.com/xbgmsharp/ipxe-buildweb/blob/master/Dockerfile))\n\n* Supported architectures: x86-64\n\n* Run ipxe-buildweb\n\nAfter a successful [Docker installation](https://docs.docker.com/engine/installation/) you just need to execute the following command in the shell:\n\n```bash\ndocker pull xbgmsharp/ipxe-buildweb\ndocker run  -d \\\n\t--publish 8080:80 \\\n\t--publish 22:22 \\\n\t--name ipxe-buildweb \\\n\txbgmsharp/ipxe-buildweb\n```\n\n## Test using Docker\n\n* Install Docker\n[Install documentation of Docker](https://docs.docker.com/engine/installation/)\n\n```bash\n$ wget http://get.docker.io/ -O - | sh\n```\n\n* Build the images\n\nThe following command build the build directly from the github repository.\n\nThe build process might take some time a while as it download the origin Ubuntu LTS docker image.\n```bash\n$ docker build --rm=true --no-cache=true -t xbgmsharp/ipxe-buildweb github.com/xbgmsharp/ipxe-buildweb.git\n```\n\nAlternatively, you can build the image localy after cloning the repository.\n```bash\n$ docker build --rm=true --no-cache=true -t xbgmsharp/ipxe-buildweb .\n```\n\n* Run the container\n\nRun as a detach container\n```bash\n$ docker run -d -p 22:22 -p 8080:80 -t xbgmsharp/ipxe-buildweb\n```\n\nOr run the container with an attach shell\n```\n$ docker run -i --rm -p 22:22 -p 8080:80 -t xbgmsharp/ipxe-buildweb /bin/bash\n```\n\n* Check the IP\n\n```bash\n$ docker ps -a\n$ docker inspect CONTAINER_ID | grep IPA\n```\n\nOr both command in one\n```bash\n$ docker ps -a | grep ipxe-buildweb | awk '{print $1}' | xargs docker inspect | grep IPAddress\n```\n\nOr all in one with the ssh connection\n```bash\n$ ssh $(docker ps -a | grep ipxe-buildweb | awk '{print $1}' | xargs docker inspect | grep IPAddress | awk '{print $2}' | tr -d '\"' | tr -d ',' )\n```\n\n* Login in the container via SSH\n\nUser is root and password is admin.\n\n```bash\n$ ssh root@172.17.0.x\n```\n\n* Review logs\n\n```bash\n$ docker logs CONTAINER_ID\n```\n\n* Enjoy!\n\n## Support\n\nTo get support, please create new [issue](https://github.com/xbgmsharp/ipxe-buildweb/issues)\n\n## Contribution\nI'm happy to accept Pull Requests!\n\n## License\nThis 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxbgmsharp%2Fipxe-buildweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxbgmsharp%2Fipxe-buildweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxbgmsharp%2Fipxe-buildweb/lists"}