From 01feed67db1ddd9e97b7f54a15d5c8b456a9c61e Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 24 Jun 2024 11:13:26 +0300 Subject: [PATCH] Add netbootxyz --- docker/netbootxyz/docker-compose.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docker/netbootxyz/docker-compose.toml diff --git a/docker/netbootxyz/docker-compose.toml b/docker/netbootxyz/docker-compose.toml new file mode 100644 index 0000000..8b93ec6 --- /dev/null +++ b/docker/netbootxyz/docker-compose.toml @@ -0,0 +1,20 @@ +[volumes] +config = {} +assets = {} + +[services.netbootxyz] +image = "lscr.io/linuxserver/netbootxyz" +container_name = "netbootxyz" +restart = "unless-stopped" +environment = [ + "PUID=1000", + "PGID=1000", + "TZ=Etc/UTC", + "MENU_VERSION=1.9.9", + "PORT_RANGE=30000:30010", + "SUBFOLDER=/", + "NGINX_PORT=80", + "WEB_APP_PORT=3000", +] +ports = ["3000:3000", "69:69/udp", "8081:80"] +volumes = ["config:/config", "assets:/assets"]