diff --git a/docker-cli b/docker-cli new file mode 100644 index 0000000..dc7e970 --- /dev/null +++ b/docker-cli @@ -0,0 +1,12 @@ +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 \ No newline at end of file