From e92fee12bd4b8dd900f5ce5c1fff68f744dcc045 Mon Sep 17 00:00:00 2001 From: eliott Date: Thu, 22 Feb 2024 22:41:04 +0100 Subject: [PATCH] Ajout du docker-compose --- docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..71e6975 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +--- +version: "2.1" +services: + netbootxyz: + image: ghcr.io/netbootxyz/netbootxyz + container_name: netbootxyz + environment: + - MENU_VERSION=2.0.47 # optional + - NGINX_PORT=80 # optional + - WEB_APP_PORT=3000 # optional + volumes: + - /path/to/config:/config # optional + - /path/to/assets:/assets # optional + ports: + - 3000:3000 # optional, destination should match ${WEB_APP_PORT} variable above. + - 69:69/udp + - 80:80 # optional, destination should match ${NGINX_PORT} variable above. + restart: unless-stopped