From 204d833f10c26adc8b1d5dff071f7ffbd3217bd6 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Fri, 30 Apr 2021 00:49:55 +0000 Subject: [PATCH] Workflow update --- lsio/netbootxyz/docker-compose.yaml | 2 ++ lsio/netbootxyz/docker-run.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/lsio/netbootxyz/docker-compose.yaml b/lsio/netbootxyz/docker-compose.yaml index e39a232..3641421 100644 --- a/lsio/netbootxyz/docker-compose.yaml +++ b/lsio/netbootxyz/docker-compose.yaml @@ -20,6 +20,8 @@ services: - MENU_VERSION=1.9.9 # optional # Specify the port range tftp will use for data transfers [(see Wikipedia)](https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol#Details) - PORT_RANGE=30000:30010 # optional + # Specify a sobfolder if running this behind a reverse proxy (IE /proxy/) + - SUBFOLDER=/ # 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 e3349c4..57456e1 100644 --- a/lsio/netbootxyz/docker-run.sh +++ b/lsio/netbootxyz/docker-run.sh @@ -12,6 +12,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for UserID` \ -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/)` \ -p 3000:3000 `# Web configuration interface.` \ -p 69:69/udp `# TFTP Port.` \ -p 8080:80 `# optional` `# NGINX server for hosting assets.` \