From b52a2ff8343fe0ad29eabb8c3500110ababbe0fe Mon Sep 17 00:00:00 2001 From: technorabilia Date: Mon, 26 Feb 2024 00:34:02 +0000 Subject: [PATCH] Workflow update --- lsio/netbootxyz/docker-compose.yaml | 4 ++++ lsio/netbootxyz/docker-run.sh | 2 ++ 2 files changed, 6 insertions(+) diff --git a/lsio/netbootxyz/docker-compose.yaml b/lsio/netbootxyz/docker-compose.yaml index 16eecce..328e07f 100644 --- a/lsio/netbootxyz/docker-compose.yaml +++ b/lsio/netbootxyz/docker-compose.yaml @@ -24,6 +24,10 @@ services: - PORT_RANGE=30000:30010 # optional # Specify a sobfolder if running this behind a reverse proxy (IE /proxy/) - SUBFOLDER=/ # optional + # Specify a different internal port for the asset server + - NGINX_PORT=80 # optional + # Specify a different internal port for the configuration UI + - WEB_APP_PORT=3000 # optional volumes: # Storage for boot menu files and web application config - ${BASEDIR:-/volume1/docker}/netbootxyz/config:/config diff --git a/lsio/netbootxyz/docker-run.sh b/lsio/netbootxyz/docker-run.sh index 12148bb..e3e10a6 100644 --- a/lsio/netbootxyz/docker-run.sh +++ b/lsio/netbootxyz/docker-run.sh @@ -14,6 +14,8 @@ docker run -d \ -e MENU_VERSION=1.9.9 `# optional` `# Specify a specific version of boot files you want to use from NETBOOT.XYZ (unset pulls latest)` \ -e PORT_RANGE=30000:30010 `# optional` `# Specify the port range tftp will use for data transfers [(see Wikipedia)](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol#Details)` \ -e SUBFOLDER=/ `# optional` `# Specify a sobfolder if running this behind a reverse proxy (IE /proxy/)` \ + -e NGINX_PORT=80 `# optional` `# Specify a different internal port for the asset server` \ + -e WEB_APP_PORT=3000 `# optional` `# Specify a different internal port for the configuration UI` \ -p 3000:3000 `# Web configuration interface.` \ -p 69:69/udp `# TFTP Port.` \ -p 8080:80 `# optional` `# NGINX server for hosting assets.` \