Skip to content

Commit a16665b

Browse files
authored
Merge pull request #1 from mechmyday/netboot
Add Netboot.xyz container for PXE boot
2 parents 4357d4e + 47d6dd6 commit a16665b

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

netboot/docker-compose.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)