12 lines
661 B
Plaintext
12 lines
661 B
Plaintext
docker run -d \
|
|
--name=netbootxyz \
|
|
-e MENU_VERSION=2.0.76 `# optional` \
|
|
-e NGINX_PORT=80 `# optional` \
|
|
-e WEB_APP_PORT=3000 `# optional` \
|
|
-p 3000:3000 `# sets web configuration interface port, destination should match ${WEB_APP_PORT} variable above.` \
|
|
-p 69:69/udp `# sets tftp port` \
|
|
-p 80:80 `# optional, destination should match ${NGINX_PORT} variable above.` \
|
|
-v /local/path/to/config:/config `# optional` \
|
|
-v /local/path/to/assets:/assets `# optional` \
|
|
--restart unless-stopped \
|
|
ghcr.io/netbootxyz/netbootxyz |