├── .gitignore
├── root
├── etc
│ └── s6-overlay
│ │ └── s6-rc.d
│ │ ├── init-deprecate
│ │ ├── up
│ │ ├── type
│ │ ├── dependencies.d
│ │ │ └── init-config-end
│ │ └── run
│ │ ├── svc-tftp
│ │ ├── type
│ │ ├── notification-fd
│ │ ├── dependencies.d
│ │ │ └── init-services
│ │ └── run
│ │ ├── svc-nginx
│ │ ├── type
│ │ ├── notification-fd
│ │ ├── dependencies.d
│ │ │ └── init-services
│ │ └── run
│ │ ├── svc-webapp
│ │ ├── type
│ │ ├── notification-fd
│ │ ├── dependencies.d
│ │ │ └── init-services
│ │ └── run
│ │ ├── user
│ │ └── contents.d
│ │ │ ├── svc-nginx
│ │ │ ├── svc-tftp
│ │ │ ├── init-deprecate
│ │ │ ├── svc-webapp
│ │ │ ├── init-netboot-config
│ │ │ └── init-nginx-config
│ │ ├── init-nginx-config
│ │ ├── type
│ │ ├── dependencies.d
│ │ │ └── init-config
│ │ ├── up
│ │ └── run
│ │ ├── init-netboot-config
│ │ ├── type
│ │ ├── dependencies.d
│ │ │ └── init-nginx-config
│ │ ├── up
│ │ └── run
│ │ ├── init-services
│ │ └── dependencies.d
│ │ │ └── init-deprecate
│ │ └── init-config-end
│ │ └── dependencies.d
│ │ └── init-netboot-config
├── donate.txt
└── defaults
│ ├── default
│ └── nginx.conf
├── .github
├── FUNDING.yml
├── workflows
│ ├── permissions.yml
│ └── greetings.yml
├── ISSUE_TEMPLATE
│ ├── issue.bug.yml
│ ├── config.yml
│ └── issue.feature.yml
├── PULL_REQUEST_TEMPLATE.md
└── CONTRIBUTING.md
├── .editorconfig
├── jenkins-vars.yml
├── Dockerfile
├── Dockerfile.aarch64
├── readme-vars.yml
├── README.md
├── LICENSE
└── package_versions.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | .jenkins-external
2 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-deprecate/up:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-tftp/type:
--------------------------------------------------------------------------------
1 | longrun
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-nginx/type:
--------------------------------------------------------------------------------
1 | longrun
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-tftp/notification-fd:
--------------------------------------------------------------------------------
1 | 3
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-webapp/type:
--------------------------------------------------------------------------------
1 | longrun
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-nginx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-tftp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-nginx-config/type:
--------------------------------------------------------------------------------
1 | oneshot
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-nginx/notification-fd:
--------------------------------------------------------------------------------
1 | 3
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-webapp/notification-fd:
--------------------------------------------------------------------------------
1 | 3
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-deprecate:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-webapp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-deprecate/type:
--------------------------------------------------------------------------------
1 | oneshot
2 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-netboot-config/type:
--------------------------------------------------------------------------------
1 | oneshot
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-netboot-config:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-nginx-config:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-nginx/dependencies.d/init-services:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-tftp/dependencies.d/init-services:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-webapp/dependencies.d/init-services:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-deprecate/dependencies.d/init-config-end:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-nginx-config/dependencies.d/init-config:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-services/dependencies.d/init-deprecate:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/donate.txt:
--------------------------------------------------------------------------------
1 | netboot.xyz: https://opencollective.com/netbootxyz/donate
2 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-netboot-config:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-netboot-config/dependencies.d/init-nginx-config:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-nginx-config/up:
--------------------------------------------------------------------------------
1 | /etc/s6-overlay/s6-rc.d/init-nginx-config/run
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-netboot-config/up:
--------------------------------------------------------------------------------
1 | /etc/s6-overlay/s6-rc.d/init-netboot-config/run
--------------------------------------------------------------------------------
/root/defaults/default:
--------------------------------------------------------------------------------
1 | server {
2 | listen REPLACE_PORT;
3 | location / {
4 | root /assets;
5 | autoindex on;
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: linuxserver
2 | open_collective: linuxserver
3 | custom: ["https://opencollective.com/netbootxyz/donate",]
4 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-nginx/run:
--------------------------------------------------------------------------------
1 | #!/usr/bin/with-contenv bash
2 | # shellcheck shell=bash
3 |
4 | exec \
5 | s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 80" \
6 | /usr/sbin/nginx -c /config/nginx/nginx.conf
7 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-webapp/run:
--------------------------------------------------------------------------------
1 | #!/usr/bin/with-contenv bash
2 | # shellcheck shell=bash
3 |
4 | exec \
5 | s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 3000" \
6 | cd /app s6-setuidgid abc /usr/bin/node app.js
7 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/svc-tftp/run:
--------------------------------------------------------------------------------
1 | #!/usr/bin/with-contenv bash
2 | # shellcheck shell=bash
3 |
4 | exec \
5 | s6-notifyoncheck -d -n 300 -w 1000 -c "nc -zu localhost 69" \
6 | /usr/sbin/in.tftpd --foreground --listen --user abc --secure ${PORT_RANGE:+--port-range $PORT_RANGE} /config/menus
7 |
--------------------------------------------------------------------------------
/.github/workflows/permissions.yml:
--------------------------------------------------------------------------------
1 | name: Permission check
2 | on:
3 | pull_request_target:
4 | paths:
5 | - '**/run'
6 | - '**/finish'
7 | - '**/check'
8 | - 'root/migrations/*'
9 |
10 | jobs:
11 | permission_check:
12 | uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1
13 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/issue.bug.yml:
--------------------------------------------------------------------------------
1 | # Based on the issue template
2 | name: Bug report
3 | description: Create a report to help us improve
4 | title: "[BUG]
"
5 | labels: [Bug]
6 | body:
7 | - type: markdown
8 | attributes:
9 | value: |
10 | # DEPRECATION NOTICE
11 | This image is deprecated. We will not offer support for this image and it will not be updated.
12 |
13 |
14 | Consider switching to https://github.com/netbootxyz/docker-netbootxyz for the official container which is a drop-in replacement.
15 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: false
2 | contact_links:
3 | - name: Discord chat support
4 | url: https://linuxserver.io/discord
5 | about: Realtime support / chat with the community and the team.
6 |
7 | - name: Discourse discussion forum
8 | url: https://discourse.linuxserver.io
9 | about: Post on our community forum.
10 |
11 | - name: Documentation
12 | url: https://docs.linuxserver.io/images/docker-netbootxyz
13 | about: Documentation - information about all of our containers.
14 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/issue.feature.yml:
--------------------------------------------------------------------------------
1 | # Based on the issue template
2 | name: Feature request
3 | description: Suggest an idea for this project
4 | title: "[FEAT] "
5 | labels: [enhancement]
6 | body:
7 | - type: markdown
8 | attributes:
9 | value: |
10 | # DEPRECATION NOTICE
11 | This image is deprecated. We will not offer support for this image and it will not be updated.
12 |
13 |
14 | Consider switching to https://github.com/netbootxyz/docker-netbootxyz for the official container which is a drop-in replacement.
15 |
--------------------------------------------------------------------------------
/root/defaults/nginx.conf:
--------------------------------------------------------------------------------
1 | user abc;
2 | worker_processes 4;
3 | pid /run/nginx.pid;
4 | include /etc/nginx/modules/*.conf;
5 |
6 | events {
7 | worker_connections 768;
8 | }
9 |
10 | http {
11 | sendfile on;
12 | tcp_nopush on;
13 | tcp_nodelay on;
14 | keepalive_timeout 65;
15 | types_hash_max_size 2048;
16 | client_max_body_size 0;
17 | include /etc/nginx/mime.types;
18 | default_type application/octet-stream;
19 | access_log /config/log/nginx/access.log;
20 | error_log /config/log/nginx/error.log;
21 | gzip on;
22 | gzip_disable "msie6";
23 | include /config/nginx/site-confs/*;
24 |
25 | }
26 | daemon off;
27 |
--------------------------------------------------------------------------------
/.github/workflows/greetings.yml:
--------------------------------------------------------------------------------
1 | name: Greetings
2 |
3 | on: [pull_request_target, issues]
4 |
5 | jobs:
6 | greeting:
7 | runs-on: ubuntu-latest
8 | steps:
9 | - uses: actions/first-interaction@v1
10 | with:
11 | issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12 | pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-netbootxyz/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
13 | repo-token: ${{ secrets.GITHUB_TOKEN }}
14 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # This file is globally distributed to all container image projects from
2 | # https://github.com/linuxserver/docker-jenkins-builder/blob/master/.editorconfig
3 |
4 | # top-most EditorConfig file
5 | root = true
6 |
7 | # Unix-style newlines with a newline ending every file
8 | [*]
9 | end_of_line = lf
10 | insert_final_newline = true
11 | # trim_trailing_whitespace may cause unintended issues and should not be globally set true
12 | trim_trailing_whitespace = false
13 |
14 | [{Dockerfile*,**.yml}]
15 | indent_style = space
16 | indent_size = 2
17 |
18 | [{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
19 | indent_style = space
20 | indent_size = 4
21 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-nginx-config/run:
--------------------------------------------------------------------------------
1 | #!/usr/bin/with-contenv bash
2 | # shellcheck shell=bash
3 |
4 | # make our folders
5 | mkdir -p \
6 | /assets \
7 | /config/{nginx/site-confs,log/nginx} \
8 | /run \
9 | /var/lib/nginx/tmp/client_body \
10 | /var/tmp/nginx
11 |
12 | # copy config files
13 | if [[ ! -f /config/nginx/nginx.conf ]]; then
14 | cp /defaults/nginx.conf /config/nginx/nginx.conf
15 | fi
16 |
17 | if [[ ! -f /config/nginx/site-confs/default ]]; then
18 | if [ -z ${NGINX_PORT+x} ]; then
19 | NGINX_PORT=80
20 | fi
21 | sed -i "s/REPLACE_PORT/$NGINX_PORT/g" /defaults/default
22 | cp /defaults/default /config/nginx/site-confs/default
23 | fi
24 |
25 | # Ownership
26 | lsiown -R abc:abc /assets
27 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-deprecate/run:
--------------------------------------------------------------------------------
1 | #!/usr/bin/with-contenv bash
2 | # shellcheck shell=bash
3 |
4 | echo '
5 | ╔════════════════════════════════════════════════════╗
6 | ╠════════════════════════════════════════════════════╣
7 | ║ ║
8 | ║ This image is deprecated. ║
9 | ║ We will not offer support for this image ║
10 | ║ and it will not be updated. ║
11 | ║ ║
12 | ╠════════════════════════════════════════════════════╣
13 | ╚════════════════════════════════════════════════════╝
14 |
15 | Consider switching to https://github.com/netbootxyz/docker-netbootxyz for the official container which is a drop-in replacement.
16 |
17 | ══════════════════════════════════════════════════════'
18 |
--------------------------------------------------------------------------------
/jenkins-vars.yml:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | # jenkins variables
4 | project_name: docker-netbootxyz
5 | external_type: github_stable
6 | release_type: stable
7 | release_tag: latest
8 | ls_branch: master
9 | repo_vars:
10 | - EXT_GIT_BRANCH = 'master'
11 | - EXT_USER = 'netbootxyz'
12 | - EXT_REPO = 'webapp'
13 | - CONTAINER_NAME = 'netbootxyz'
14 | - BUILD_VERSION_ARG = 'WEBAPP_VERSION'
15 | - LS_USER = 'linuxserver'
16 | - LS_REPO = 'docker-netbootxyz'
17 | - DOCKERHUB_IMAGE = 'linuxserver/netbootxyz'
18 | - DEV_DOCKERHUB_IMAGE = 'lsiodev/netbootxyz'
19 | - PR_DOCKERHUB_IMAGE = 'lspipepr/netbootxyz'
20 | - DIST_IMAGE = 'alpine'
21 | - MULTIARCH='true'
22 | - CI='true'
23 | - CI_WEB='true'
24 | - CI_PORT='3000'
25 | - CI_SSL='false'
26 | - CI_DELAY='120'
27 | - CI_DOCKERENV=''
28 | - CI_AUTH=''
29 | - CI_WEBPATH=''
30 | sponsor_links:
31 | - { name: "netboot.xyz", url: "https://opencollective.com/netbootxyz/donate" }
32 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | # syntax=docker/dockerfile:1
2 |
3 | FROM ghcr.io/linuxserver/baseimage-alpine:3.20
4 |
5 | # set version label
6 | ARG BUILD_DATE
7 | ARG VERSION
8 | ARG WEBAPP_VERSION
9 | LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
10 | LABEL maintainer="thelamer"
11 |
12 | RUN \
13 | echo "**** install runtime packages ****" && \
14 | apk add --no-cache \
15 | nginx \
16 | nodejs \
17 | tftp-hpa && \
18 | echo "**** install build packages ****" && \
19 | apk add --no-cache --virtual=build-dependencies \
20 | npm && \
21 | echo "**** install WebApp ****" && \
22 | if [ -z ${WEBAPP_VERSION+x} ]; then \
23 | WEBAPP_VERSION=$(curl -sX GET "https://api.github.com/repos/netbootxyz/webapp/releases/latest" \
24 | | awk '/tag_name/{print $4;exit}' FS='[""]'); \
25 | fi && \
26 | curl -o \
27 | /tmp/webapp.tar.gz -L \
28 | "https://github.com/netbootxyz/webapp/archive/${WEBAPP_VERSION}.tar.gz" && \
29 | tar xf \
30 | /tmp/webapp.tar.gz -C \
31 | /app/ --strip-components=1 && \
32 | npm install --prefix /app && \
33 | printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
34 | echo "**** cleanup ****" && \
35 | apk del --purge \
36 | build-dependencies && \
37 | rm -rf \
38 | /tmp/*
39 |
40 | # copy local files
41 | COPY root/ /
42 |
43 | # app runs on port 3000
44 | EXPOSE 3000
45 |
46 | VOLUME /config
47 |
--------------------------------------------------------------------------------
/Dockerfile.aarch64:
--------------------------------------------------------------------------------
1 | # syntax=docker/dockerfile:1
2 |
3 | FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20
4 |
5 | # set version label
6 | ARG BUILD_DATE
7 | ARG VERSION
8 | ARG WEBAPP_VERSION
9 | LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
10 | LABEL maintainer="thelamer"
11 |
12 | RUN \
13 | echo "**** install runtime packages ****" && \
14 | apk add --no-cache \
15 | nginx \
16 | nodejs \
17 | tftp-hpa && \
18 | echo "**** install build packages ****" && \
19 | apk add --no-cache --virtual=build-dependencies \
20 | npm && \
21 | echo "**** install WebApp ****" && \
22 | if [ -z ${WEBAPP_VERSION+x} ]; then \
23 | WEBAPP_VERSION=$(curl -sX GET "https://api.github.com/repos/netbootxyz/webapp/releases/latest" \
24 | | awk '/tag_name/{print $4;exit}' FS='[""]'); \
25 | fi && \
26 | curl -o \
27 | /tmp/webapp.tar.gz -L \
28 | "https://github.com/netbootxyz/webapp/archive/${WEBAPP_VERSION}.tar.gz" && \
29 | tar xf \
30 | /tmp/webapp.tar.gz -C \
31 | /app/ --strip-components=1 && \
32 | npm install --prefix /app && \
33 | printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
34 | echo "**** cleanup ****" && \
35 | apk del --purge \
36 | build-dependencies && \
37 | rm -rf \
38 | /tmp/*
39 |
40 | # copy local files
41 | COPY root/ /
42 |
43 | # app runs on port 3000
44 | EXPOSE 3000
45 |
46 | VOLUME /config
47 |
--------------------------------------------------------------------------------
/root/etc/s6-overlay/s6-rc.d/init-netboot-config/run:
--------------------------------------------------------------------------------
1 | #!/usr/bin/with-contenv bash
2 | # shellcheck shell=bash
3 |
4 | # create local logs dir
5 | mkdir -p \
6 | /config/menus/remote \
7 | /config/menus/local
8 |
9 | # download menus if not found
10 | if [[ ! -f /config/menus/remote/menu.ipxe ]]; then
11 | if [[ -z ${MENU_VERSION+x} ]]; then \
12 | MENU_VERSION=$(curl -sL "https://api.github.com/repos/netbootxyz/netboot.xyz/releases/latest" | jq -r '.tag_name')
13 | fi
14 | echo "[netbootxyz-init] Downloading Netboot.xyz at ${MENU_VERSION}"
15 | # menu files
16 | curl -o \
17 | /config/endpoints.yml -sL \
18 | "https://raw.githubusercontent.com/netbootxyz/netboot.xyz/${MENU_VERSION}/endpoints.yml"
19 | curl -o \
20 | /tmp/menus.tar.gz -sL \
21 | "https://github.com/netbootxyz/netboot.xyz/releases/download/${MENU_VERSION}/menus.tar.gz"
22 | tar xf \
23 | /tmp/menus.tar.gz -C \
24 | /config/menus/remote
25 | # boot files
26 | curl -o \
27 | /config/menus/remote/netboot.xyz-undionly.kpxe -sL \
28 | "https://github.com/netbootxyz/netboot.xyz/releases/download/${MENU_VERSION}/netboot.xyz-undionly.kpxe"
29 | curl -o \
30 | /config/menus/remote/netboot.xyz.efi -sL \
31 | "https://github.com/netbootxyz/netboot.xyz/releases/download/${MENU_VERSION}/netboot.xyz.efi"
32 | curl -o \
33 | /config/menus/remote/netboot.xyz.kpxe -sL \
34 | "https://github.com/netbootxyz/netboot.xyz/releases/download/${MENU_VERSION}/netboot.xyz.kpxe"
35 | # layer and cleanup
36 | echo -n "${MENU_VERSION}" > /config/menuversion.txt
37 | cp -r /config/menus/remote/* /config/menus
38 | rm -f /tmp/menus.tar.gz
39 | fi
40 |
41 | # Ownership
42 | lsiown -R abc:abc /config
43 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | # DEPRECATION NOTICE
2 | This image is deprecated. We will not offer support for this image and it will not be updated.
3 |
4 |
5 | Consider switching to https://github.com/netbootxyz/docker-netbootxyz for the official container which is a drop-in replacement.
6 |
7 |
8 | [linuxserverurl]: https://linuxserver.io
9 | [][linuxserverurl]
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | ------------------------------
28 |
29 | - [ ] I have read the [contributing](https://github.com/linuxserver/docker-netbootxyz/blob/master/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications
30 |
31 | ------------------------------
32 |
33 |
34 |
35 | ## Description:
36 |
37 |
38 | ## Benefits of this PR and context:
39 |
40 |
41 | ## How Has This Been Tested?
42 |
43 |
44 |
45 |
46 |
47 | ## Source / References:
48 |
49 |
--------------------------------------------------------------------------------
/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contributing to netbootxyz
2 |
3 | ## Gotchas
4 |
5 | * While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open.
6 | * Read, and fill the Pull Request template
7 | * If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR
8 | * If the PR is addressing an existing issue include, closes #\, in the body of the PR commit message
9 | * If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://linuxserver.io/discord)
10 |
11 | ## Common files
12 |
13 | | File | Use case |
14 | | :----: | --- |
15 | | `Dockerfile` | Dockerfile used to build amd64 images |
16 | | `Dockerfile.aarch64` | Dockerfile used to build 64bit ARM architectures |
17 | | `Dockerfile.armhf` | Dockerfile used to build 32bit ARM architectures |
18 | | `Jenkinsfile` | This file is a product of our builder and should not be edited directly. This is used to build the image |
19 | | `jenkins-vars.yml` | This file is used to generate the `Jenkinsfile` mentioned above, it only affects the build-process |
20 | | `package_versions.txt` | This file is generated as a part of the build-process and should not be edited directly. It lists all the installed packages and their versions |
21 | | `README.md` | This file is a product of our builder and should not be edited directly. This displays the readme for the repository and image registries |
22 | | `readme-vars.yml` | This file is used to generate the `README.md` |
23 |
24 | ## Readme
25 |
26 | If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit.
27 | Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-netbootxyz/edit/master/readme-vars.yml).
28 |
29 | These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play.
30 | Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-netbootxyz)
31 |
32 | ### Fixing typos or clarify the text in the readme
33 |
34 | There are variables for multiple parts of the readme, the most common ones are:
35 |
36 | | Variable | Description |
37 | | :----: | --- |
38 | | `project_blurb` | This is the short excerpt shown above the project logo. |
39 | | `app_setup_block` | This is the text that shows up under "Application Setup" if enabled |
40 |
41 | ### Parameters
42 |
43 | The compose and run examples are also generated from these variables.
44 |
45 | We have a [reference file](https://github.com/linuxserver/docker-jenkins-builder/blob/master/vars/_container-vars-blank) in our Jenkins Builder.
46 |
47 | These are prefixed with `param_` for required parameters, or `opt_param` for optional parameters, except for `cap_add`.
48 | Remember to enable param, if currently disabled. This differs between parameters, and can be seen in the reference file.
49 |
50 | Devices, environment variables, ports and volumes expects its variables in a certain way.
51 |
52 | ### Devices
53 |
54 | ```yml
55 | param_devices:
56 | - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" }
57 | opt_param_devices:
58 | - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" }
59 | ```
60 |
61 | ### Environment variables
62 |
63 | ```yml
64 | param_env_vars:
65 | - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
66 | opt_param_env_vars:
67 | - { env_var: "VERSION", env_value: "latest", desc: "Supported values are LATEST, PLEXPASS or a specific version number." }
68 | ```
69 |
70 | ### Ports
71 |
72 | ```yml
73 | param_ports:
74 | - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" }
75 | opt_param_ports:
76 | - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" }
77 | ```
78 |
79 | ### Volumes
80 |
81 | ```yml
82 | param_volumes:
83 | - { vol_path: "/config", vol_host_path: "", desc: "Configuration files." }
84 | opt_param_volumes:
85 | - { vol_path: "/config", vol_host_path: "", desc: "Configuration files." }
86 | ```
87 |
88 | ### Testing template changes
89 |
90 | After you make any changes to the templates, you can use our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) to have the files updated from the modified templates. Please use the command found under `Running Locally` [on this page](https://github.com/linuxserver/docker-jenkins-builder/blob/master/README.md) to generate them prior to submitting a PR.
91 |
92 | ## Dockerfiles
93 |
94 | We use multiple Dockerfiles in our repos, this is because sometimes some CPU architectures needs different packages to work.
95 | If you are proposing additional packages to be added, ensure that you added the packages to all the Dockerfiles in alphabetical order.
96 |
97 | ### Testing your changes
98 |
99 | ```bash
100 | git clone https://github.com/linuxserver/docker-netbootxyz.git
101 | cd docker-netbootxyz
102 | docker build \
103 | --no-cache \
104 | --pull \
105 | -t linuxserver/netbootxyz:latest .
106 | ```
107 |
108 | The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
109 |
110 | ```bash
111 | docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
112 | ```
113 |
114 | Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
115 |
116 | ## Update the changelog
117 |
118 | If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-netbootxyz/tree/master/root), add an entry to the changelog
119 |
120 | ```yml
121 | changelogs:
122 | - { date: "DD.MM.YY:", desc: "Added some love to templates" }
123 | ```
124 |
--------------------------------------------------------------------------------
/readme-vars.yml:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | # project information
4 | project_name: netbootxyz
5 | project_url: "https://netboot.xyz"
6 | project_logo: "https://netboot.xyz/images/netboot.xyz.gif"
7 | project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a way to PXE boot various operating system installers or utilities from one place within the BIOS without the need of having to go retrieve the media to run the tool. iPXE is used to provide a user friendly menu from within the BIOS that lets you easily choose the operating system you want along with any specific types of versions or bootable flags."
8 | project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
9 | project_categories: "Administration,Network"
10 | # deprecation information
11 | project_deprecation_status: true
12 | project_deprecation_message: "Consider switching to https://github.com/netbootxyz/docker-netbootxyz for the official container which is a drop-in replacement."
13 | # supported architectures
14 | available_architectures:
15 | - {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
16 | - {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
17 | # development version
18 | development_versions: true
19 | development_versions_items:
20 | - {tag: "latest", desc: "Web application for full self hosting"}
21 | - {tag: "tftp", desc: "TFTP server only with NETBOOT.XYZ boot files"}
22 | # container parameters
23 | common_param_env_vars_enabled: true
24 | param_container_name: "{{ project_name }}"
25 | param_usage_include_vols: true
26 | param_volumes:
27 | - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Storage for boot menu files and web application config"}
28 | param_usage_include_ports: true
29 | param_ports:
30 | - {external_port: "3000", internal_port: "3000", port_desc: "Web configuration interface."}
31 | - {external_port: "69", internal_port: "69/udp", port_desc: "TFTP Port."}
32 | # optional env variables
33 | opt_param_usage_include_env: true
34 | opt_param_env_vars:
35 | - {env_var: "MENU_VERSION", env_value: "1.9.9", desc: "Specify a specific version of boot files you want to use from NETBOOT.XYZ (unset pulls latest)"}
36 | - {env_var: "PORT_RANGE", env_value: "30000:30010", desc: "Specify the port range tftp will use for data transfers [(see Wikipedia)](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol#Details)"}
37 | - {env_var: "SUBFOLDER", env_value: "/", desc: "Specify a subfolder if running this behind a reverse proxy (IE /proxy/)"}
38 | - {env_var: "NGINX_PORT", env_value: "80", desc: "Specify a different internal port for the asset server"}
39 | - {env_var: "WEB_APP_PORT", env_value: "3000", desc: "Specify a different internal port for the configuration UI"}
40 | opt_param_usage_include_ports: true
41 | opt_param_ports:
42 | - {external_port: "8080", internal_port: "80", port_desc: "NGINX server for hosting assets."}
43 | opt_param_usage_include_vols: true
44 | opt_param_volumes:
45 | - {vol_path: "/assets", vol_host_path: "/path/to/assets", desc: "Storage for NETBOOT.XYZ bootable assets (live CDs and other files)"}
46 | # application setup block
47 | app_setup_block_enabled: true
48 | app_setup_block: |
49 | To use this image you need an existing DHCP server where you can set this TFTP server as your DHCP boot destination. This image does not contain a DHCP server nor do we aim to support one in the future. This is simply a TFTP server hosting the latest IPXE kernel builds from [netboot.xyz]({{ project_url }}). If you are interested in their project and lack the ability to setup a DHCP server to boot this payload they also have USB stick images you can use available on their [downloads page]({{ project_url }}/downloads/).
50 |
51 | ### Router Setup Examples
52 |
53 | #### PFSense
54 | Services -> DHCP Server
55 |
56 | Set both the option for \"TFTP Server\" and the options under the Advanced \"Network Booting\" section.
57 | * check enable
58 | * Next server- IP used for TFTP Server
59 | * Default BIOS file name- `netboot.xyz.kpxe`
60 | * UEFI 32 bit file name- `netboot.xyz.efi`
61 | * UEFI 64 bit file name- `netboot.xyz.efi`
62 |
63 | #### OPNsense
64 | Services -> DHCP Server
65 |
66 | Under the Advanced \"Network Booting\" section.
67 | * check enable
68 | * Next server- IP of docker host
69 | * Default BIOS file name- `netboot.xyz.kpxe`
70 | * UEFI 32 bit file name- `netboot.xyz.efi`
71 | * UEFI 64 bit file name- `netboot.xyz.efi`
72 |
73 | #### Unifi Security Gateway (with the controller)
74 | Networks -> LAN (or the network you want to boot from) -> ADVANCED DHCP OPTIONS
75 | * tick Enable network boot
76 | * Server- YOURSERVERIP
77 | * Filename- `netboot.xyz.kpxe`
78 | Advanced full support
79 | * For USG variants force provisioning a json containing the same config used for EdgeOS (shown below) will fully support netboot.
80 | * For UDM variants, creating a valid dnsmasq config and placing in /run/dnsmasq.conf.d will load the config, but will not survive reboots or firmware updates [source](https://community.ui.com/questions/PXE-Network-boot-UDM-SE-Serving-files-conditionally-based-on-architecture/1843fcf6-87d5-4305-bc1d-4e55619ebb10).
81 |
82 | #### EdgeOS/VyOS
83 | Connect via SSH
84 | ```
85 | configure
86 | set service dhcp-server use-dnsmasq enable
87 | set service dns forwarding options \"dhcp-match=set:bios,60,PXEClient:Arch:00000\"
88 | set service dns forwarding options \"dhcp-boot=tag:bios,netboot.xyz.kpxe,,SERVERIP\"
89 | set service dns forwarding options \"dhcp-match=set:efi32,60,PXEClient:Arch:00002\"
90 | set service dns forwarding options \"dhcp-boot=tag:efi32,netboot.xyz.efi,,SERVERIP\"
91 | set service dns forwarding options \"dhcp-match=set:efi32-1,60,PXEClient:Arch:00006\"
92 | set service dns forwarding options \"dhcp-boot=tag:efi32-1,netboot.xyz.efi,,SERVERIP\"
93 | set service dns forwarding options \"dhcp-match=set:efi64,60,PXEClient:Arch:00007\"
94 | set service dns forwarding options \"dhcp-boot=tag:efi64,netboot.xyz.efi,,SERVERIP\"
95 | set service dns forwarding options \"dhcp-match=set:efi64-1,60,PXEClient:Arch:00008\"
96 | set service dns forwarding options \"dhcp-boot=tag:efi64-1,netboot.xyz.efi,,SERVERIP\"
97 | set service dns forwarding options \"dhcp-match=set:efi64-2,60,PXEClient:Arch:00009\"
98 | set service dns forwarding options \"dhcp-boot=tag:efi64-2,netboot.xyz.efi,,SERVERIP\"
99 | commit; save
100 | ```
101 |
102 | #### Dnsmasq/DD-WRT/OpenWRT/Tomato/PIHOLE
103 | Various locations to set Additional/Custom DNSMASQ options in UI or config files
104 | Set the following lines:
105 | ```
106 | dhcp-match=set:bios,60,PXEClient:Arch:00000
107 | dhcp-boot=tag:bios,netboot.xyz.kpxe,,YOURSERVERIP
108 | dhcp-match=set:efi32,60,PXEClient:Arch:00002
109 | dhcp-boot=tag:efi32,netboot.xyz.efi,,YOURSERVERIP
110 | dhcp-match=set:efi32-1,60,PXEClient:Arch:00006
111 | dhcp-boot=tag:efi32-1,netboot.xyz.efi,,YOURSERVERIP
112 | dhcp-match=set:efi64,60,PXEClient:Arch:00007
113 | dhcp-boot=tag:efi64,netboot.xyz.efi,,YOURSERVERIP
114 | dhcp-match=set:efi64-1,60,PXEClient:Arch:00008
115 | dhcp-boot=tag:efi64-1,netboot.xyz.efi,,YOURSERVERIP
116 | dhcp-match=set:efi64-2,60,PXEClient:Arch:00009
117 | dhcp-boot=tag:efi64-2,netboot.xyz.efi,,YOURSERVERIP
118 | ```
119 | Ensure you restart the DNSMASQ service after the changes.
120 |
121 | #### Microsoft Server DHCP
122 |
123 | * Run the DHCP program
124 | * Under Scope/Scope Options
125 | * check option 066 and enter the FQDN or IP of your TFTP boot server
126 | * check option 067 and enter one of the following bootfile names:
127 | * Default BIOS file name- netboot.xyz.kpxe
128 | * UEFI 32 bit file name- netboot.xyz.efi
129 | * UEFI 64 bit file name- netboot.xyz.efi
130 |
131 | Anything else from a router standpoint is a crapshoot for supporting Dnsmasq options or proprietary PXE boot options, check Google for support (try your exact router model number with 'pxe boot') or look into setting up your own DHCP server in Linux.
132 | This image also contains `netboot.xyz.efi` which can be used to boot using UEFI network boot. The UEFI boot and menu will have limited functionality if you choose to use it.
133 | # init diagram
134 | init_diagram: |
135 | "netbootxyz:latest": {
136 | docker-mods
137 | base {
138 | fix-attr +\nlegacy cont-init
139 | }
140 | docker-mods -> base
141 | legacy-services
142 | custom services
143 | init-services -> legacy-services
144 | init-services -> custom services
145 | custom services -> legacy-services
146 | legacy-services -> ci-service-check
147 | init-migrations -> init-adduser
148 | init-os-end -> init-config
149 | init-config -> init-config-end
150 | init-netboot-config -> init-config-end
151 | init-os-end -> init-crontab-config
152 | init-mods-end -> init-custom-files
153 | init-config-end -> init-deprecate
154 | init-adduser -> init-device-perms
155 | base -> init-envfile
156 | base -> init-migrations
157 | base -> init-mods
158 | init-config-end -> init-mods
159 | init-mods -> init-mods-end
160 | init-mods-package-install -> init-mods-end
161 | init-mods -> init-mods-package-install
162 | init-nginx-config -> init-netboot-config
163 | init-config -> init-nginx-config
164 | base -> init-os-end
165 | init-adduser -> init-os-end
166 | init-device-perms -> init-os-end
167 | init-envfile -> init-os-end
168 | init-migrations -> init-os-end
169 | init-custom-files -> init-services
170 | init-deprecate -> init-services
171 | init-mods-end -> init-services
172 | init-services -> svc-cron
173 | svc-cron -> legacy-services
174 | init-services -> svc-nginx
175 | svc-nginx -> legacy-services
176 | init-services -> svc-tftp
177 | svc-tftp -> legacy-services
178 | init-services -> svc-webapp
179 | svc-webapp -> legacy-services
180 | }
181 | Base Images: {
182 | "baseimage-alpine:3.20"
183 | }
184 | "netbootxyz:latest" <- Base Images
185 | # changelog
186 | changelogs:
187 | - {date: "17.05.25:", desc: "Deprecate"}
188 | - {date: "30.06.24:", desc: "Rebase to Alpine 3.20."}
189 | - {date: "24.02.24:", desc: "Add new port settings for the webserver and app."}
190 | - {date: "08.12.23:", desc: "Rebase to Alpine 3.19."}
191 | - {date: "17.11.23:", desc: "Rebase to Alpine 3.18."}
192 | - {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
193 | - {date: "05.03.23:", desc: "Rebase to Alpine 3.17."}
194 | - {date: "12.10.22:", desc: "Rebasing to Alpine 3.16, migrate to s6v3."}
195 | - {date: "29.04.21:", desc: "Rebasing to alpine 3.13, add SUBFOLDER env variable."}
196 | - {date: "01.06.20:", desc: "Rebasing to alpine 3.12."}
197 | - {date: "19.12.19:", desc: "Rebasing to alpine 3.11."}
198 | - {date: "13.12.19:", desc: "Swapping latest tag over to webapp stack for management."}
199 | - {date: "10.12.19:", desc: "Adding tftp branch to provide tftp only option to latest users."}
200 | - {date: "22.10.19:", desc: "Initial release."}
201 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | [](https://linuxserver.io)
4 |
5 | [](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!")
6 | [](https://linuxserver.io/discord "realtime support / chat with the community and the team.")
7 | [](https://discourse.linuxserver.io "post on our community forum.")
8 | [](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.")
9 | [](https://github.com/linuxserver "view the source for all of our repositories.")
10 | [](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget")
11 |
12 | The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring:
13 |
14 | * regular and timely application updates
15 | * easy user mappings (PGID, PUID)
16 | * custom base image with s6 overlay
17 | * weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth
18 | * regular security updates
19 |
20 | Find us at:
21 |
22 | * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more!
23 | * [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team.
24 | * [Discourse](https://discourse.linuxserver.io) - post on our community forum.
25 | * [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images.
26 | * [GitHub](https://github.com/linuxserver) - view the source for all of our repositories.
27 | * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget
28 |
29 | # DEPRECATION NOTICE
30 | This image is deprecated. We will not offer support for this image and it will not be updated.
31 |
32 |
33 | Consider switching to https://github.com/netbootxyz/docker-netbootxyz for the official container which is a drop-in replacement.
34 | # [linuxserver/netbootxyz](https://github.com/linuxserver/docker-netbootxyz)
35 |
36 | [](https://scarf.sh)
37 | [](https://github.com/linuxserver/docker-netbootxyz)
38 | [](https://github.com/linuxserver/docker-netbootxyz/releases)
39 | [](https://github.com/linuxserver/docker-netbootxyz/packages)
40 | [](https://gitlab.com/linuxserver.io/docker-netbootxyz/container_registry)
41 | [](https://quay.io/repository/linuxserver.io/netbootxyz)
42 | [](https://hub.docker.com/r/linuxserver/netbootxyz)
43 | [](https://hub.docker.com/r/linuxserver/netbootxyz)
44 | [](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-netbootxyz/job/master/)
45 | [](https://ci-tests.linuxserver.io/linuxserver/netbootxyz/latest/index.html)
46 |
47 | [Netbootxyz](https://netboot.xyz) is a way to PXE boot various operating system installers or utilities from one place within the BIOS without the need of having to go retrieve the media to run the tool. iPXE is used to provide a user friendly menu from within the BIOS that lets you easily choose the operating system you want along with any specific types of versions or bootable flags.
48 |
49 | [](https://netboot.xyz)
50 |
51 | ## Supported Architectures
52 |
53 | We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://distribution.github.io/distribution/spec/manifest-v2-2/#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/).
54 |
55 | Simply pulling `lscr.io/linuxserver/netbootxyz:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
56 |
57 | The architectures supported by this image are:
58 |
59 | | Architecture | Available | Tag |
60 | | :----: | :----: | ---- |
61 | | x86-64 | ✅ | amd64-\ |
62 | | arm64 | ✅ | arm64v8-\ |
63 | | armhf | ❌ | |
64 |
65 | ## Version Tags
66 |
67 | This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
68 |
69 | | Tag | Available | Description |
70 | | :----: | :----: |--- |
71 | | latest | ✅ | Web application for full self hosting |
72 | | tftp | ✅ | TFTP server only with NETBOOT.XYZ boot files |
73 |
74 | ## Application Setup
75 |
76 | To use this image you need an existing DHCP server where you can set this TFTP server as your DHCP boot destination. This image does not contain a DHCP server nor do we aim to support one in the future. This is simply a TFTP server hosting the latest IPXE kernel builds from [netboot.xyz](https://netboot.xyz). If you are interested in their project and lack the ability to setup a DHCP server to boot this payload they also have USB stick images you can use available on their [downloads page](https://netboot.xyz/downloads/).
77 |
78 | ### Router Setup Examples
79 |
80 | #### PFSense
81 | Services -> DHCP Server
82 |
83 | Set both the option for \"TFTP Server\" and the options under the Advanced \"Network Booting\" section.
84 | * check enable
85 | * Next server- IP used for TFTP Server
86 | * Default BIOS file name- `netboot.xyz.kpxe`
87 | * UEFI 32 bit file name- `netboot.xyz.efi`
88 | * UEFI 64 bit file name- `netboot.xyz.efi`
89 |
90 | #### OPNsense
91 | Services -> DHCP Server
92 |
93 | Under the Advanced \"Network Booting\" section.
94 | * check enable
95 | * Next server- IP of docker host
96 | * Default BIOS file name- `netboot.xyz.kpxe`
97 | * UEFI 32 bit file name- `netboot.xyz.efi`
98 | * UEFI 64 bit file name- `netboot.xyz.efi`
99 |
100 | #### Unifi Security Gateway (with the controller)
101 | Networks -> LAN (or the network you want to boot from) -> ADVANCED DHCP OPTIONS
102 | * tick Enable network boot
103 | * Server- YOURSERVERIP
104 | * Filename- `netboot.xyz.kpxe`
105 | Advanced full support
106 | * For USG variants force provisioning a json containing the same config used for EdgeOS (shown below) will fully support netboot.
107 | * For UDM variants, creating a valid dnsmasq config and placing in /run/dnsmasq.conf.d will load the config, but will not survive reboots or firmware updates [source](https://community.ui.com/questions/PXE-Network-boot-UDM-SE-Serving-files-conditionally-based-on-architecture/1843fcf6-87d5-4305-bc1d-4e55619ebb10).
108 |
109 | #### EdgeOS/VyOS
110 | Connect via SSH
111 | ```
112 | configure
113 | set service dhcp-server use-dnsmasq enable
114 | set service dns forwarding options \"dhcp-match=set:bios,60,PXEClient:Arch:00000\"
115 | set service dns forwarding options \"dhcp-boot=tag:bios,netboot.xyz.kpxe,,SERVERIP\"
116 | set service dns forwarding options \"dhcp-match=set:efi32,60,PXEClient:Arch:00002\"
117 | set service dns forwarding options \"dhcp-boot=tag:efi32,netboot.xyz.efi,,SERVERIP\"
118 | set service dns forwarding options \"dhcp-match=set:efi32-1,60,PXEClient:Arch:00006\"
119 | set service dns forwarding options \"dhcp-boot=tag:efi32-1,netboot.xyz.efi,,SERVERIP\"
120 | set service dns forwarding options \"dhcp-match=set:efi64,60,PXEClient:Arch:00007\"
121 | set service dns forwarding options \"dhcp-boot=tag:efi64,netboot.xyz.efi,,SERVERIP\"
122 | set service dns forwarding options \"dhcp-match=set:efi64-1,60,PXEClient:Arch:00008\"
123 | set service dns forwarding options \"dhcp-boot=tag:efi64-1,netboot.xyz.efi,,SERVERIP\"
124 | set service dns forwarding options \"dhcp-match=set:efi64-2,60,PXEClient:Arch:00009\"
125 | set service dns forwarding options \"dhcp-boot=tag:efi64-2,netboot.xyz.efi,,SERVERIP\"
126 | commit; save
127 | ```
128 |
129 | #### Dnsmasq/DD-WRT/OpenWRT/Tomato/PIHOLE
130 | Various locations to set Additional/Custom DNSMASQ options in UI or config files
131 | Set the following lines:
132 | ```
133 | dhcp-match=set:bios,60,PXEClient:Arch:00000
134 | dhcp-boot=tag:bios,netboot.xyz.kpxe,,YOURSERVERIP
135 | dhcp-match=set:efi32,60,PXEClient:Arch:00002
136 | dhcp-boot=tag:efi32,netboot.xyz.efi,,YOURSERVERIP
137 | dhcp-match=set:efi32-1,60,PXEClient:Arch:00006
138 | dhcp-boot=tag:efi32-1,netboot.xyz.efi,,YOURSERVERIP
139 | dhcp-match=set:efi64,60,PXEClient:Arch:00007
140 | dhcp-boot=tag:efi64,netboot.xyz.efi,,YOURSERVERIP
141 | dhcp-match=set:efi64-1,60,PXEClient:Arch:00008
142 | dhcp-boot=tag:efi64-1,netboot.xyz.efi,,YOURSERVERIP
143 | dhcp-match=set:efi64-2,60,PXEClient:Arch:00009
144 | dhcp-boot=tag:efi64-2,netboot.xyz.efi,,YOURSERVERIP
145 | ```
146 | Ensure you restart the DNSMASQ service after the changes.
147 |
148 | #### Microsoft Server DHCP
149 |
150 | * Run the DHCP program
151 | * Under Scope/Scope Options
152 | * check option 066 and enter the FQDN or IP of your TFTP boot server
153 | * check option 067 and enter one of the following bootfile names:
154 | * Default BIOS file name- netboot.xyz.kpxe
155 | * UEFI 32 bit file name- netboot.xyz.efi
156 | * UEFI 64 bit file name- netboot.xyz.efi
157 |
158 | Anything else from a router standpoint is a crapshoot for supporting Dnsmasq options or proprietary PXE boot options, check Google for support (try your exact router model number with 'pxe boot') or look into setting up your own DHCP server in Linux.
159 | This image also contains `netboot.xyz.efi` which can be used to boot using UEFI network boot. The UEFI boot and menu will have limited functionality if you choose to use it.
160 |
161 | ## Usage
162 |
163 | To help you get started creating a container from this image you can either use docker-compose or the docker cli.
164 |
165 | >[!NOTE]
166 | >Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided.
167 |
168 | ### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose))
169 |
170 | ```yaml
171 | ---
172 | services:
173 | netbootxyz:
174 | image: lscr.io/linuxserver/netbootxyz:latest
175 | container_name: netbootxyz
176 | environment:
177 | - PUID=1000
178 | - PGID=1000
179 | - TZ=Etc/UTC
180 | - MENU_VERSION=1.9.9 #optional
181 | - PORT_RANGE=30000:30010 #optional
182 | - SUBFOLDER=/ #optional
183 | - NGINX_PORT=80 #optional
184 | - WEB_APP_PORT=3000 #optional
185 | volumes:
186 | - /path/to/netbootxyz/config:/config
187 | - /path/to/assets:/assets #optional
188 | ports:
189 | - 3000:3000
190 | - 69:69/udp
191 | - 8080:80 #optional
192 | restart: unless-stopped
193 | ```
194 |
195 | ### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/))
196 |
197 | ```bash
198 | docker run -d \
199 | --name=netbootxyz \
200 | -e PUID=1000 \
201 | -e PGID=1000 \
202 | -e TZ=Etc/UTC \
203 | -e MENU_VERSION=1.9.9 `#optional` \
204 | -e PORT_RANGE=30000:30010 `#optional` \
205 | -e SUBFOLDER=/ `#optional` \
206 | -e NGINX_PORT=80 `#optional` \
207 | -e WEB_APP_PORT=3000 `#optional` \
208 | -p 3000:3000 \
209 | -p 69:69/udp \
210 | -p 8080:80 `#optional` \
211 | -v /path/to/netbootxyz/config:/config \
212 | -v /path/to/assets:/assets `#optional` \
213 | --restart unless-stopped \
214 | lscr.io/linuxserver/netbootxyz:latest
215 | ```
216 |
217 | ## Parameters
218 |
219 | Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container.
220 |
221 | | Parameter | Function |
222 | | :----: | --- |
223 | | `-p 3000:3000` | Web configuration interface. |
224 | | `-p 69:69/udp` | TFTP Port. |
225 | | `-p 80` | NGINX server for hosting assets. |
226 | | `-e PUID=1000` | for UserID - see below for explanation |
227 | | `-e PGID=1000` | for GroupID - see below for explanation |
228 | | `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
229 | | `-e MENU_VERSION=1.9.9` | Specify a specific version of boot files you want to use from NETBOOT.XYZ (unset pulls latest) |
230 | | `-e PORT_RANGE=30000:30010` | Specify the port range tftp will use for data transfers [(see Wikipedia)](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol#Details) |
231 | | `-e SUBFOLDER=/` | Specify a subfolder if running this behind a reverse proxy (IE /proxy/) |
232 | | `-e NGINX_PORT=80` | Specify a different internal port for the asset server |
233 | | `-e WEB_APP_PORT=3000` | Specify a different internal port for the configuration UI |
234 | | `-v /config` | Storage for boot menu files and web application config |
235 | | `-v /assets` | Storage for NETBOOT.XYZ bootable assets (live CDs and other files) |
236 |
237 | ## Environment variables from files (Docker secrets)
238 |
239 | You can set any environment variable from a file by using a special prepend `FILE__`.
240 |
241 | As an example:
242 |
243 | ```bash
244 | -e FILE__MYVAR=/run/secrets/mysecretvariable
245 | ```
246 |
247 | Will set the environment variable `MYVAR` based on the contents of the `/run/secrets/mysecretvariable` file.
248 |
249 | ## Umask for running applications
250 |
251 | For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting.
252 | Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support.
253 |
254 | ## User / Group Identifiers
255 |
256 | When using volumes (`-v` flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`.
257 |
258 | Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
259 |
260 | In this instance `PUID=1000` and `PGID=1000`, to find yours use `id your_user` as below:
261 |
262 | ```bash
263 | id your_user
264 | ```
265 |
266 | Example output:
267 |
268 | ```text
269 | uid=1000(your_user) gid=1000(your_user) groups=1000(your_user)
270 | ```
271 |
272 | ## Docker Mods
273 |
274 | [](https://mods.linuxserver.io/?mod=netbootxyz "view available mods for this container.") [](https://mods.linuxserver.io/?mod=universal "view available universal mods.")
275 |
276 | We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
277 |
278 | ## Support Info
279 |
280 | * Shell access whilst the container is running:
281 |
282 | ```bash
283 | docker exec -it netbootxyz /bin/bash
284 | ```
285 |
286 | * To monitor the logs of the container in realtime:
287 |
288 | ```bash
289 | docker logs -f netbootxyz
290 | ```
291 |
292 | * Container version number:
293 |
294 | ```bash
295 | docker inspect -f '{{ index .Config.Labels "build_version" }}' netbootxyz
296 | ```
297 |
298 | * Image version number:
299 |
300 | ```bash
301 | docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/netbootxyz:latest
302 | ```
303 |
304 | ## Updating Info
305 |
306 | Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (noted in the relevant readme.md), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image.
307 |
308 | Below are the instructions for updating containers:
309 |
310 | ### Via Docker Compose
311 |
312 | * Update images:
313 | * All images:
314 |
315 | ```bash
316 | docker-compose pull
317 | ```
318 |
319 | * Single image:
320 |
321 | ```bash
322 | docker-compose pull netbootxyz
323 | ```
324 |
325 | * Update containers:
326 | * All containers:
327 |
328 | ```bash
329 | docker-compose up -d
330 | ```
331 |
332 | * Single container:
333 |
334 | ```bash
335 | docker-compose up -d netbootxyz
336 | ```
337 |
338 | * You can also remove the old dangling images:
339 |
340 | ```bash
341 | docker image prune
342 | ```
343 |
344 | ### Via Docker Run
345 |
346 | * Update the image:
347 |
348 | ```bash
349 | docker pull lscr.io/linuxserver/netbootxyz:latest
350 | ```
351 |
352 | * Stop the running container:
353 |
354 | ```bash
355 | docker stop netbootxyz
356 | ```
357 |
358 | * Delete the container:
359 |
360 | ```bash
361 | docker rm netbootxyz
362 | ```
363 |
364 | * Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved)
365 | * You can also remove the old dangling images:
366 |
367 | ```bash
368 | docker image prune
369 | ```
370 |
371 | ### Image Update Notifications - Diun (Docker Image Update Notifier)
372 |
373 | >[!TIP]
374 | >We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
375 |
376 | ## Building locally
377 |
378 | If you want to make local modifications to these images for development purposes or just to customize the logic:
379 |
380 | ```bash
381 | git clone https://github.com/linuxserver/docker-netbootxyz.git
382 | cd docker-netbootxyz
383 | docker build \
384 | --no-cache \
385 | --pull \
386 | -t lscr.io/linuxserver/netbootxyz:latest .
387 | ```
388 |
389 | The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
390 |
391 | ```bash
392 | docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
393 | ```
394 |
395 | Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
396 |
397 | ## Versions
398 |
399 | * **17.05.25:** - Deprecate
400 | * **30.06.24:** - Rebase to Alpine 3.20.
401 | * **24.02.24:** - Add new port settings for the webserver and app.
402 | * **08.12.23:** - Rebase to Alpine 3.19.
403 | * **17.11.23:** - Rebase to Alpine 3.18.
404 | * **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
405 | * **05.03.23:** - Rebase to Alpine 3.17.
406 | * **12.10.22:** - Rebasing to Alpine 3.16, migrate to s6v3.
407 | * **29.04.21:** - Rebasing to alpine 3.13, add SUBFOLDER env variable.
408 | * **01.06.20:** - Rebasing to alpine 3.12.
409 | * **19.12.19:** - Rebasing to alpine 3.11.
410 | * **13.12.19:** - Swapping latest tag over to webapp stack for management.
411 | * **10.12.19:** - Adding tftp branch to provide tftp only option to latest users.
412 | * **22.10.19:** - Initial release.
413 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/package_versions.txt:
--------------------------------------------------------------------------------
1 | NAME VERSION TYPE
2 | @ampproject/remapping 2.3.0 npm
3 | @babel/code-frame 7.27.1 npm
4 | @babel/compat-data 7.27.5 npm
5 | @babel/core 7.27.4 npm
6 | @babel/generator 7.27.5 npm
7 | @babel/helper-compilation-targets 7.27.2 npm
8 | @babel/helper-module-imports 7.27.1 npm
9 | @babel/helper-module-transforms 7.27.3 npm
10 | @babel/helper-plugin-utils 7.27.1 npm
11 | @babel/helper-string-parser 7.27.1 npm
12 | @babel/helper-validator-identifier 7.27.1 npm
13 | @babel/helper-validator-option 7.27.1 npm
14 | @babel/helpers 7.27.6 npm
15 | @babel/parser 7.27.5 npm
16 | @babel/plugin-syntax-async-generators 7.8.4 npm
17 | @babel/plugin-syntax-bigint 7.8.3 npm
18 | @babel/plugin-syntax-class-properties 7.12.13 npm
19 | @babel/plugin-syntax-class-static-block 7.14.5 npm
20 | @babel/plugin-syntax-import-attributes 7.27.1 npm
21 | @babel/plugin-syntax-import-meta 7.10.4 npm
22 | @babel/plugin-syntax-json-strings 7.8.3 npm
23 | @babel/plugin-syntax-jsx 7.27.1 npm
24 | @babel/plugin-syntax-logical-assignment-operators 7.10.4 npm
25 | @babel/plugin-syntax-nullish-coalescing-operator 7.8.3 npm
26 | @babel/plugin-syntax-numeric-separator 7.10.4 npm
27 | @babel/plugin-syntax-object-rest-spread 7.8.3 npm
28 | @babel/plugin-syntax-optional-catch-binding 7.8.3 npm
29 | @babel/plugin-syntax-optional-chaining 7.8.3 npm
30 | @babel/plugin-syntax-private-property-in-object 7.14.5 npm
31 | @babel/plugin-syntax-top-level-await 7.14.5 npm
32 | @babel/plugin-syntax-typescript 7.27.1 npm
33 | @babel/template 7.27.2 npm
34 | @babel/traverse 7.27.4 npm
35 | @babel/types 7.27.6 npm
36 | @bcoe/v8-coverage 0.2.3 npm (+1 duplicate)
37 | @isaacs/cliui 8.0.2 npm
38 | @istanbuljs/load-nyc-config 1.1.0 npm
39 | @istanbuljs/schema 0.1.3 npm
40 | @jest/console 30.0.0 npm
41 | @jest/core 30.0.0 npm
42 | @jest/diff-sequences 30.0.0 npm
43 | @jest/environment 30.0.0 npm
44 | @jest/expect 30.0.0 npm
45 | @jest/expect-utils 29.7.0 npm
46 | @jest/expect-utils 30.0.0 npm (+1 duplicate)
47 | @jest/fake-timers 30.0.0 npm
48 | @jest/get-type 30.0.0 npm
49 | @jest/globals 30.0.0 npm
50 | @jest/pattern 30.0.0 npm
51 | @jest/reporters 30.0.0 npm
52 | @jest/schemas 29.6.3 npm (+2 duplicates)
53 | @jest/schemas 30.0.0 npm
54 | @jest/snapshot-utils 30.0.0 npm
55 | @jest/source-map 30.0.0 npm
56 | @jest/test-result 30.0.0 npm
57 | @jest/test-sequencer 30.0.0 npm
58 | @jest/transform 30.0.0 npm
59 | @jest/types 29.6.3 npm (+1 duplicate)
60 | @jest/types 30.0.0 npm
61 | @jridgewell/gen-mapping 0.3.8 npm
62 | @jridgewell/resolve-uri 3.1.2 npm
63 | @jridgewell/set-array 1.2.1 npm
64 | @jridgewell/sourcemap-codec 1.5.0 npm
65 | @jridgewell/trace-mapping 0.3.25 npm
66 | @mswjs/interceptors 0.38.7 npm
67 | @noble/hashes 1.8.0 npm
68 | @open-draft/deferred-promise 2.2.0 npm
69 | @open-draft/logger 0.3.0 npm
70 | @open-draft/until 2.1.0 npm
71 | @paralleldrive/cuid2 2.2.2 npm
72 | @pkgjs/parseargs 0.11.0 npm
73 | @pkgr/core 0.2.7 npm
74 | @sinclair/typebox 0.27.8 npm (+2 duplicates)
75 | @sinclair/typebox 0.34.35 npm
76 | @sinonjs/commons 3.0.1 npm
77 | @sinonjs/fake-timers 13.0.5 npm
78 | @socket.io/component-emitter 3.1.2 npm
79 | @socket.io/component-emitter UNKNOWN npm (+1 duplicate)
80 | @types/babel__core 7.20.5 npm
81 | @types/babel__generator 7.27.0 npm
82 | @types/babel__template 7.4.4 npm
83 | @types/babel__traverse 7.20.7 npm
84 | @types/cors 2.8.19 npm
85 | @types/istanbul-lib-coverage 2.0.6 npm
86 | @types/istanbul-lib-report 3.0.3 npm
87 | @types/istanbul-reports 3.0.4 npm
88 | @types/jest 29.5.14 npm
89 | @types/node 24.0.3 npm
90 | @types/stack-utils 2.0.3 npm
91 | @types/yargs 17.0.33 npm
92 | @types/yargs-parser 21.0.3 npm
93 | @ungap/structured-clone 1.3.0 npm
94 | @unrs/resolver-binding-linux-x64-musl 1.9.0 npm
95 | WebApp 0.7.6 npm
96 | accepts 1.3.8 npm
97 | ada-libs 2.7.8-r0 apk
98 | alpine-baselayout 3.6.5-r0 apk
99 | alpine-baselayout-data 3.6.5-r0 apk
100 | alpine-keys 2.4-r1 apk
101 | alpine-release 3.20.6-r0 apk
102 | ansi-escapes 4.3.2 npm
103 | ansi-regex 5.0.1 npm (+5 duplicates)
104 | ansi-regex 6.1.0 npm
105 | ansi-styles 4.3.0 npm
106 | ansi-styles 5.2.0 npm (+13 duplicates)
107 | ansi-styles 6.2.1 npm
108 | anymatch 3.1.3 npm
109 | apk-tools 2.14.4-r1 apk
110 | argparse 1.0.10 npm
111 | argparse 2.0.1 npm
112 | array-flatten 1.1.1 npm
113 | asap 2.0.6 npm
114 | async 3.2.6 npm
115 | asynckit 0.4.0 npm
116 | babel-jest 30.0.0 npm
117 | babel-plugin-istanbul 7.0.0 npm
118 | babel-plugin-jest-hoist 30.0.0 npm
119 | babel-preset-current-node-syntax 1.1.0 npm
120 | babel-preset-jest 30.0.0 npm
121 | balanced-match 1.0.2 npm
122 | base64id 2.0.0 npm
123 | bash 5.2.26-r0 apk
124 | body-parser 1.20.3 npm
125 | brace-expansion 1.1.12 npm
126 | brace-expansion 2.0.2 npm (+1 duplicate)
127 | braces 3.0.3 npm
128 | brotli-libs 1.1.0-r2 apk
129 | browserslist 4.25.0 npm
130 | bser 2.1.1 npm
131 | buffer-from 1.1.2 npm
132 | busybox 1.36.1-r29 apk
133 | busybox-binsh 1.36.1-r29 apk
134 | bytes 3.1.2 npm
135 | c-ares 1.33.1-r0 apk
136 | ca-certificates 20241121-r1 apk
137 | ca-certificates-bundle 20241121-r1 apk
138 | call-bind-apply-helpers 1.0.2 npm
139 | call-bound 1.0.4 npm
140 | callsites 3.1.0 npm
141 | camelcase 5.3.1 npm
142 | camelcase 6.3.0 npm
143 | caniuse-lite 1.0.30001723 npm
144 | catatonit 0.2.0-r0 apk
145 | chalk 4.1.2 npm
146 | char-regex 1.0.2 npm
147 | ci-info 3.9.0 npm
148 | ci-info 4.2.0 npm
149 | cjs-module-lexer 2.1.0 npm
150 | cliui 8.0.1 npm
151 | co 4.6.0 npm
152 | collect-v8-coverage 1.0.2 npm
153 | color-convert 2.0.1 npm
154 | color-name 1.1.4 npm
155 | combined-stream 1.0.8 npm
156 | component-emitter 1.3.1 npm
157 | concat-map 0.0.1 npm
158 | content-disposition 0.5.4 npm
159 | content-type 1.0.5 npm
160 | convert-source-map 2.0.0 npm
161 | cookie 0.7.1 npm
162 | cookie 0.7.2 npm
163 | cookie-signature 1.0.6 npm
164 | cookiejar 2.1.4 npm
165 | coreutils 9.5-r2 apk
166 | coreutils-env 9.5-r2 apk
167 | coreutils-fmt 9.5-r2 apk
168 | coreutils-sha512sum 9.5-r2 apk
169 | cors 2.8.5 npm
170 | cross-spawn 7.0.6 npm
171 | curl 8.12.1-r0 apk
172 | debug 2.6.9 npm
173 | debug 4.3.7 npm (+5 duplicates)
174 | debug 4.4.1 npm (+3 duplicates)
175 | dedent 1.6.0 npm
176 | deepmerge 4.3.1 npm
177 | delayed-stream 1.0.0 npm
178 | depd 2.0.0 npm
179 | destroy 1.2.0 npm
180 | detect-newline 3.1.0 npm
181 | dezalgo 1.0.4 npm
182 | diff-sequences 29.6.3 npm
183 | dunder-proto 1.0.1 npm
184 | eastasianwidth 0.2.0 npm
185 | ee-first 1.1.1 npm
186 | ejs 3.1.10 npm
187 | electron-to-chromium 1.5.168 npm
188 | emittery 0.13.1 npm
189 | emoji-regex 8.0.0 npm (+3 duplicates)
190 | emoji-regex 9.2.2 npm
191 | encodeurl 1.0.2 npm
192 | encodeurl 2.0.0 npm
193 | engine.io 6.6.4 npm
194 | engine.io-client 6.6.3 npm
195 | engine.io-client UNKNOWN npm (+2 duplicates)
196 | engine.io-parser 5.2.3 npm
197 | engine.io-parser UNKNOWN npm (+1 duplicate)
198 | error-ex 1.3.2 npm
199 | es-define-property 1.0.1 npm
200 | es-errors 1.3.0 npm
201 | es-object-atoms 1.1.1 npm
202 | es-set-tostringtag 2.1.0 npm
203 | escalade 3.2.0 npm
204 | escape-html 1.0.3 npm
205 | escape-string-regexp 2.0.0 npm
206 | esprima 4.0.1 npm
207 | etag 1.8.1 npm
208 | execa 5.1.1 npm
209 | exit-x 0.2.2 npm
210 | expect 29.7.0 npm
211 | expect 30.0.0 npm (+1 duplicate)
212 | express 4.21.2 npm
213 | fast-json-stable-stringify 2.1.0 npm
214 | fast-safe-stringify 2.1.1 npm
215 | fb-watchman 2.0.2 npm
216 | filelist 1.0.4 npm
217 | fill-range 7.1.1 npm
218 | finalhandler 1.3.1 npm
219 | find-up 4.1.0 npm
220 | findutils 4.9.0-r5 apk
221 | foreground-child 3.3.1 npm
222 | form-data 4.0.3 npm
223 | formidable 3.5.4 npm
224 | forwarded 0.2.0 npm
225 | fresh 0.5.2 npm
226 | fs.realpath 1.0.0 npm
227 | function-bind 1.1.2 npm
228 | gensync 1.0.0-beta.2 npm
229 | get-caller-file 2.0.5 npm
230 | get-intrinsic 1.3.0 npm
231 | get-package-type 0.1.0 npm
232 | get-proto 1.0.1 npm
233 | get-stream 6.0.1 npm
234 | glob 10.4.5 npm
235 | glob 7.2.3 npm
236 | globals 11.12.0 npm
237 | gmp 6.3.0-r1 apk
238 | gopd 1.2.0 npm
239 | graceful-fs 4.2.11 npm
240 | has-flag 4.0.0 npm
241 | has-symbols 1.1.0 npm
242 | has-tostringtag 1.0.2 npm
243 | hasown 2.0.2 npm
244 | html-escaper 2.0.2 npm
245 | http 0.0.0 npm
246 | http-errors 2.0.0 npm
247 | human-signals 2.1.0 npm
248 | iconv-lite 0.4.24 npm
249 | icu-data-en 74.2-r0 apk
250 | icu-libs 74.2-r0 apk
251 | import-local 3.2.0 npm
252 | imurmurhash 0.1.4 npm
253 | inflight 1.0.6 npm
254 | inherits 2.0.4 npm
255 | ipaddr.js 1.9.1 npm
256 | is-arrayish 0.2.1 npm
257 | is-fullwidth-code-point 3.0.0 npm
258 | is-generator-fn 2.1.0 npm
259 | is-node-process 1.2.0 npm
260 | is-number 7.0.0 npm
261 | is-stream 2.0.1 npm
262 | isbinaryfile 5.0.4 npm
263 | isexe 2.0.0 npm
264 | istanbul-lib-coverage 3.2.2 npm
265 | istanbul-lib-instrument 6.0.3 npm
266 | istanbul-lib-report 3.0.1 npm
267 | istanbul-lib-source-maps 5.0.6 npm
268 | istanbul-reports 3.1.7 npm
269 | jackspeak 3.4.3 npm
270 | jake 10.9.2 npm
271 | jest 30.0.0 npm
272 | jest-changed-files 30.0.0 npm
273 | jest-circus 30.0.0 npm
274 | jest-cli 30.0.0 npm
275 | jest-config 30.0.0 npm
276 | jest-diff 29.7.0 npm
277 | jest-diff 30.0.0 npm (+2 duplicates)
278 | jest-docblock 30.0.0 npm
279 | jest-each 30.0.0 npm
280 | jest-environment-node 30.0.0 npm
281 | jest-get-type 29.6.3 npm
282 | jest-haste-map 30.0.0 npm
283 | jest-leak-detector 30.0.0 npm
284 | jest-matcher-utils 29.7.0 npm
285 | jest-matcher-utils 30.0.0 npm (+2 duplicates)
286 | jest-message-util 29.7.0 npm
287 | jest-message-util 30.0.0 npm (+8 duplicates)
288 | jest-mock 30.0.0 npm
289 | jest-pnp-resolver 1.2.3 npm
290 | jest-regex-util 30.0.0 npm
291 | jest-resolve 30.0.0 npm
292 | jest-resolve-dependencies 30.0.0 npm
293 | jest-runner 30.0.0 npm
294 | jest-runtime 30.0.0 npm
295 | jest-snapshot 30.0.0 npm
296 | jest-util 29.7.0 npm
297 | jest-util 30.0.0 npm (+19 duplicates)
298 | jest-validate 30.0.0 npm
299 | jest-watcher 30.0.0 npm
300 | jest-worker 30.0.0 npm
301 | jq 1.7.1-r0 apk
302 | js-tokens 4.0.0 npm
303 | js-yaml 3.14.1 npm
304 | js-yaml 4.1.0 npm
305 | jsesc 3.1.0 npm
306 | json-parse-even-better-errors 2.3.1 npm
307 | json-stringify-safe 5.0.1 npm
308 | json5 2.2.3 npm
309 | leven 3.1.0 npm
310 | libacl 2.3.2-r0 apk
311 | libattr 2.5.2-r0 apk
312 | libbase64 0.5.2-r0 apk
313 | libbsd 0.12.2-r0 apk
314 | libcrypto3 3.3.3-r0 apk
315 | libcurl 8.12.1-r0 apk
316 | libgcc 13.2.1_git20240309-r1 apk
317 | libidn2 2.3.7-r0 apk
318 | libintl 0.22.5-r0 apk
319 | libmd 1.1.0-r0 apk
320 | libncursesw 6.4_p20240420-r2 apk
321 | libproc2 4.0.4-r0 apk
322 | libpsl 0.21.5-r1 apk
323 | libssl3 3.3.3-r0 apk
324 | libstdc++ 13.2.1_git20240309-r1 apk
325 | libunistring 1.2-r0 apk
326 | lines-and-columns 1.2.4 npm
327 | linux-pam 1.6.0-r0 apk
328 | locate-path 5.0.0 npm
329 | lru-cache 10.4.3 npm
330 | lru-cache 5.1.1 npm
331 | make-dir 4.0.0 npm
332 | makeerror 1.0.12 npm
333 | math-intrinsics 1.1.0 npm
334 | media-typer 0.3.0 npm
335 | merge-descriptors 1.0.3 npm
336 | merge-stream 2.0.0 npm
337 | methods 1.1.2 npm
338 | micromatch 4.0.8 npm
339 | mime 1.6.0 npm
340 | mime 2.6.0 npm
341 | mime-db 1.52.0 npm
342 | mime-types 2.1.35 npm
343 | mimic-fn 2.1.0 npm
344 | minimatch 3.1.2 npm
345 | minimatch 5.1.6 npm
346 | minimatch 9.0.5 npm
347 | minipass 7.1.2 npm
348 | mock-fs 5.5.0 npm
349 | ms 2.0.0 npm
350 | ms 2.1.3 npm (+10 duplicates)
351 | musl 1.2.5-r1 apk
352 | musl-utils 1.2.5-r1 apk
353 | napi-postinstall 0.2.4 npm
354 | natural-compare 1.4.0 npm
355 | ncurses-terminfo-base 6.4_p20240420-r2 apk
356 | negotiator 0.6.3 npm
357 | netcat-openbsd 1.226-r0 apk
358 | nghttp2-libs 1.62.1-r0 apk
359 | nginx 1.26.3-r0 apk
360 | nock 14.0.5 npm
361 | node-downloader-helper 2.1.9 npm
362 | node-fetch 2.7.0 npm
363 | node-int64 0.4.0 npm
364 | node-releases 2.0.19 npm
365 | nodejs 20.15.1-r0 apk
366 | normalize-path 3.0.0 npm
367 | npm-run-path 4.0.1 npm
368 | object-assign 4.1.1 npm
369 | object-inspect 1.13.4 npm
370 | on-finished 2.4.1 npm
371 | once 1.4.0 npm
372 | onetime 5.1.2 npm
373 | oniguruma 6.9.9-r0 apk
374 | outvariant 1.4.3 npm
375 | p-limit 2.3.0 npm
376 | p-limit 3.1.0 npm
377 | p-locate 4.1.0 npm
378 | p-try 2.2.0 npm
379 | package-json-from-dist 1.0.1 npm
380 | parse-json 5.2.0 npm
381 | parseurl 1.3.3 npm
382 | path-exists 4.0.0 npm
383 | path-is-absolute 1.0.1 npm
384 | path-key 3.1.1 npm
385 | path-scurry 1.11.1 npm
386 | path-to-regexp 0.1.12 npm
387 | pcre 8.45-r3 apk
388 | picocolors 1.1.1 npm
389 | picomatch 2.3.1 npm
390 | picomatch 4.0.2 npm (+19 duplicates)
391 | pirates 4.0.7 npm
392 | pkg-dir 4.2.0 npm
393 | pretty-format 29.7.0 npm
394 | pretty-format 30.0.0 npm (+12 duplicates)
395 | procps-ng 4.0.4-r0 apk
396 | propagate 2.0.1 npm
397 | proxy-addr 2.0.7 npm
398 | pure-rand 7.0.1 npm
399 | qs 6.13.0 npm
400 | range-parser 1.2.1 npm
401 | raw-body 2.5.2 npm
402 | react-is 18.3.1 npm
403 | readdirp 3.6.0 npm
404 | readline 8.2.10-r0 apk
405 | require-directory 2.1.1 npm
406 | resolve-cwd 3.0.0 npm
407 | resolve-from 5.0.0 npm
408 | safe-buffer 5.2.1 npm
409 | safer-buffer 2.1.2 npm
410 | scanelf 1.3.7-r2 apk
411 | semver 6.3.1 npm
412 | semver 7.7.2 npm (+2 duplicates)
413 | send 0.19.0 npm
414 | serve-static 1.16.2 npm
415 | setprototypeof 1.2.0 npm
416 | shadow 4.15.1-r0 apk
417 | shebang-command 2.0.0 npm
418 | shebang-regex 3.0.0 npm
419 | side-channel 1.1.0 npm
420 | side-channel-list 1.0.0 npm
421 | side-channel-map 1.0.1 npm
422 | side-channel-weakmap 1.0.2 npm
423 | signal-exit 3.0.7 npm
424 | signal-exit 4.1.0 npm
425 | skalibs 2.14.1.1-r0 apk
426 | slash 3.0.0 npm
427 | socket.io 4.8.1 npm
428 | socket.io-adapter 2.5.5 npm
429 | socket.io-client 4.7.5 npm (+1 duplicate)
430 | socket.io-client 4.8.1 npm
431 | socket.io-parser 4.2.4 npm
432 | source-map 0.6.1 npm
433 | source-map-support 0.5.13 npm
434 | sprintf-js 1.0.3 npm
435 | ssl_client 1.36.1-r29 apk
436 | stack-utils 2.0.6 npm
437 | statuses 2.0.1 npm
438 | strict-event-emitter 0.5.1 npm
439 | string-length 4.0.2 npm
440 | string-width 4.2.3 npm (+3 duplicates)
441 | string-width 5.1.2 npm
442 | strip-ansi 6.0.1 npm (+5 duplicates)
443 | strip-ansi 7.1.0 npm
444 | strip-bom 4.0.0 npm
445 | strip-final-newline 2.0.0 npm
446 | strip-json-comments 3.1.1 npm
447 | superagent 10.2.1 npm
448 | supertest 7.1.1 npm
449 | supports-color 7.2.0 npm
450 | supports-color 8.1.1 npm
451 | synckit 0.11.8 npm
452 | systeminformation 5.27.1 npm
453 | test-exclude 6.0.0 npm
454 | tftp-hpa 5.2-r7 apk
455 | tmpl 1.0.5 npm
456 | to-regex-range 5.0.1 npm
457 | toidentifier 1.0.1 npm
458 | tr46 0.0.3 npm
459 | type-detect 4.0.8 npm
460 | type-fest 0.21.3 npm
461 | type-is 1.6.18 npm
462 | tzdata 2025b-r0 apk
463 | undici-types 7.8.0 npm
464 | unpipe 1.0.0 npm
465 | unrs-resolver 1.9.0 npm
466 | update-browserslist-db 1.1.3 npm
467 | utils-merge 1.0.1 npm
468 | utmps-libs 0.1.2.2-r1 apk
469 | v8-to-istanbul 9.3.0 npm
470 | vary 1.1.2 npm
471 | walker 1.0.8 npm
472 | webidl-conversions 3.0.1 npm
473 | whatwg-url 5.0.0 npm
474 | which 2.0.2 npm
475 | wrap-ansi 7.0.0 npm (+1 duplicate)
476 | wrap-ansi 8.1.0 npm
477 | wrappy 1.0.2 npm
478 | write-file-atomic 5.0.1 npm
479 | ws 8.17.1 npm
480 | xmlhttprequest-ssl 2.1.2 npm
481 | y18n 5.0.8 npm
482 | yallist 3.1.1 npm
483 | yargs 17.7.2 npm
484 | yargs-parser 21.1.1 npm
485 | yocto-queue 0.1.0 npm
486 | zlib 1.3.1-r1 apk
487 | zstd-libs 1.5.6-r0 apk
488 |
--------------------------------------------------------------------------------