22 lines
529 B
YAML
22 lines
529 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
netbootxyz:
|
|
image: lscr.io/linuxserver/netbootxyz:latest
|
|
container_name: netbootxyz
|
|
environment:
|
|
- PUID=1002
|
|
- PGID=100
|
|
|
|
- PORT_RANGE=30000:30010 #optional
|
|
volumes:
|
|
- /srv/dev-disk-by-uuid-cda15581-b397-4ab7-8698-acea81fc1e9c/netbootxyz/config:/config
|
|
- /srv/dev-disk-by-uuid-cda15581-b397-4ab7-8698-acea81fc1e9c/netbootxyz/assets:/assets #optional
|
|
ports:
|
|
- 3333:3000
|
|
- 69:69/udp
|
|
- 3334:80 #optional
|
|
restart: unless-stopped
|
|
|
|
|