Dockerized version of iventoy to allow for easy deployment
all credit goes to https://www.iventoy.com/
sample docker compose is in repo
setup automated buildssetup pushing to docker hub
version: "3"
services:
ventoy:
image: thedrobe/iventoy-docker
network_mode: "host" # works best in host or can foward the required ports
restart: unless-stopped
privileged: true # needed for iventoy not to crash on startup
stop_signal: SIGINT
volumes:
- ./iso:/app/iso
- this only supports x64 and not arm based processors due to iventoy only supporting that.
- Am builing arm images in hopes for iventoy to run on arm one day