From f5cb77f1d1ec803b7638020dc2cd6ee01224c772 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 14 Feb 2023 01:24:44 -0600 Subject: [PATCH] Bot Updating Documentation --- images/docker-netbootxyz.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/images/docker-netbootxyz.md b/images/docker-netbootxyz.md index fe2ca5638..247e1f16e 100644 --- a/images/docker-netbootxyz.md +++ b/images/docker-netbootxyz.md @@ -31,7 +31,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\ | | arm64 | ✅ | arm64v8-\ | -| armhf| ✅ | arm32v7-\ | +| armhf | ✅ | arm32v7-\ | ## Version Tags @@ -41,7 +41,6 @@ This image provides various versions that are available via tags. Please read th | :----: | :----: |--- | | latest | ✅ | Web application for full self hosting | | tftp | ✅ | TFTP server only with NETBOOT.XYZ boot files | - ## Application Setup 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/). @@ -177,6 +176,7 @@ services: environment: - PUID=1000 - PGID=1000 + - TZ=Etc/UTC - MENU_VERSION=1.9.9 #optional - PORT_RANGE=30000:30010 #optional - SUBFOLDER=/ #optional @@ -197,6 +197,7 @@ docker run -d \ --name=netbootxyz \ -e PUID=1000 \ -e PGID=1000 \ + -e TZ=Etc/UTC \ -e MENU_VERSION=1.9.9 `#optional` \ -e PORT_RANGE=30000:30010 `#optional` \ -e SUBFOLDER=/ `#optional` \ @@ -207,6 +208,7 @@ docker run -d \ -v /path/to/assets:/assets `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/netbootxyz:latest + ``` ## Parameters @@ -227,6 +229,7 @@ Docker images are configured using parameters passed at runtime (such as those a | :----: | --- | | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | +| `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `MENU_VERSION=1.9.9` | Specify a specific version of boot files you want to use from NETBOOT.XYZ (unset pulls latest) | | `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) | | `SUBFOLDER=/` | Specify a sobfolder if running this behind a reverse proxy (IE /proxy/) |