commit 11cbfad69288fca495bde418803ff6cb28f6ab24 Author: jay Date: Fri Oct 3 13:01:24 2025 +0900 Add compose.yml diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..4a81d3d --- /dev/null +++ b/compose.yml @@ -0,0 +1,20 @@ +--- +services: + netbootxyz: + image: lscr.io/linuxserver/netbootxyz:latest + container_name: netbootxyz + environment: + - PUID=1000 #current user + - PGID=1000 #current group + - TZ=Asia/Tokyo + # - MENU_VERSION=1.9.9 #optional, sets menus version, unset uses latest + - PORT_RANGE=30000:30010 #optional + - SUBFOLDER=/ #optional + volumes: + - /srv/dev-disk-by-uuid-6a885a06-bd1c-49b3-95f2-ec98bd6171e1/config_backups:/config_netbootxyz + - /srv/dev-disk-by-uuid-6a885a06-bd1c-49b3-95f2-ec98bd6171e1/media:/assets #optional + ports: + - 3000:3000 + - 69:69/udp + - 8181:80 #optional + restart: always \ No newline at end of file