https://github.com/tuxuser/netiso-srv
Alternative NetISO server for x360 netiso dashlaunch plugin
https://github.com/tuxuser/netiso-srv
aurora netiso nova server x360 xbox360
Last synced: about 1 year ago
JSON representation
Alternative NetISO server for x360 netiso dashlaunch plugin
- Host: GitHub
- URL: https://github.com/tuxuser/netiso-srv
- Owner: tuxuser
- Created: 2025-03-21T01:45:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-21T11:37:22.000Z (over 1 year ago)
- Last Synced: 2025-03-21T12:37:44.700Z (over 1 year ago)
- Topics: aurora, netiso, nova, server, x360, xbox360
- Language: Rust
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/tuxuser/netiso-srv/actions/workflows/build.yml)
[](https://github.com/tuxuser/netiso-srv/pkgs/container/netiso-srv-rs)
[](https://github.com/tuxuser/netiso-srv/releases/latest)
# NetISO server daemon
## Usage
Options:
`-r` - Recursive scanning for ISO files
`-h` - Print usage
Run: `netiso-srv [-r] [directory with *.iso files]`
## Docker
Spawn container standalone
```
docker run -p 4323:4323 -v /path/to/isos:/mnt ghcr.io/tuxuser/netiso-srv-rs:latest
```
or
Spawn via docker compose
```
docker compose up
```
## Development
### Build
```
cargo build [--release]
```
### Build docker image locally
Make sure to have the `netiso-srv` built and available in current directory.
Build the image:
```
docker build -t netiso:localdev .
```
The resulting docker image is now ready-to-use from `netiso:localdev`, see `Docker`-steps above for regular docker-usage.