From 11cbfad69288fca495bde418803ff6cb28f6ab24 Mon Sep 17 00:00:00 2001 From: jay Date: Fri, 3 Oct 2025 13:01:24 +0900 Subject: [PATCH] Add compose.yml --- compose.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 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