From 9405e97fb3c4d3f4eb996fd55efc9cde88b529f9 Mon Sep 17 00:00:00 2001 From: Eliott Ude Date: Thu, 22 Feb 2024 23:01:53 +0100 Subject: [PATCH] Ajouter 'docker-cli' --- docker-cli | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docker-cli 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