26 lines
630 B
YAML
26 lines
630 B
YAML
---
|
|
version: '3.8'
|
|
services:
|
|
netbootxyz:
|
|
image: lscr.io/linuxserver/netbootxyz:latest
|
|
container_name: netbootxyz
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- MENU_VERSION=1.9.9 #optional
|
|
- PORT_RANGE=30000:30010 #optional
|
|
- SUBFOLDER=/ #optional
|
|
- NGINX_PORT=80 #optional
|
|
- WEB_APP_PORT=3000 #optional
|
|
volumes:
|
|
- ./netbootxyz/config:/config
|
|
- ./netbootxyz/assets:/assets #optional
|
|
ports:
|
|
- 3000:3000
|
|
- 69:69/udp
|
|
- 8080:80 #optional
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|