We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4357d4e + 47d6dd6 commit a16665bCopy full SHA for a16665b
1 file changed
netboot/docker-compose.yml
@@ -0,0 +1,18 @@
1
+---
2
+version: "2.1"
3
+services:
4
+ netbootxyz:
5
+ image: ghcr.io/netbootxyz/netbootxyz
6
+ container_name: netbootxyz
7
+ environment:
8
+ - MENU_VERSION=2.0.47 # optional
9
+ - NGINX_PORT=80 # optional
10
+ - WEB_APP_PORT=3000 # optional
11
+ volumes:
12
+ - /opt/docker/netboot/data:/config # optional
13
+ - /opt/docker/netboot/data/assets:/assets # optional
14
+ ports:
15
+ - 3030:3000 # optional, destination should match ${WEB_APP_PORT} variable above.
16
+ - 69:69/udp
17
+ - 8088:80 # optional, destination should match ${NGINX_PORT} variable above.
18
+ restart: unless-stopped
0 commit comments