You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
843 B
Markdown

12 months ago
# iventoy
11 months ago
A Docker image running [iventoy](https://www.iventoy.com).
11 months ago
A github actions workflow runs daily to check if their is a new release.
11 months ago
<https://hub.docker.com/r/ziggyds/iventoy>
11 months ago
## Docker Compose
This does not work with rootless Docker. The container must be run as root.
```yaml
11 months ago
---
version: '3.9'
services:
iventoy:
image: ziggyds/iventoy:latest
container_name: iventoy
restart: always
privileged: true #must be true
11 months ago
ports:
- 26000:26000
- 16000:16000
11 months ago
- 10809:10809
- 67:67/udp
- 69:69/udp
volumes:
- /<path to isos>:/app/iso
- /<path to config>:/app/data
- /<path to logs>:/app/log
environment:
- AUTO_START_PXE=true # optional, true by default
```
Not necessary to expose all the listed ports.
<https://www.iventoy.com/en/doc_portnum.html>