20 lines
No EOL
468 B
YAML
20 lines
No EOL
468 B
YAML
version: '2.1'
|
|
services:
|
|
netbootxyz:
|
|
image: lscr.io/linuxserver/netbootxyz:latest
|
|
container_name: netbootxyz
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Los_Angeles
|
|
- MENU_VERSION=1.9.9
|
|
- PORT_RANGE=30000:30010
|
|
- SUBFOLDER=/
|
|
volumes:
|
|
- ${NETBOOTXYZ_HOME}/config:/config
|
|
- ${NETBOOTXYZ_HOME}/assets:/assets
|
|
ports:
|
|
- 3000:3000
|
|
- 69:69/udp
|
|
- 8080:80
|
|
restart: unless-stopped |