Sthope c5446c2dbb
Some checks failed
Image Build / init (push) Successful in 18s
Image Build / iventoy image (push) Failing after 11s
Update Dockerfile
2024-04-23 20:16:37 +02:00
2024-04-23 20:16:37 +02:00
2024-04-23 19:18:11 +02:00
2024-04-23 19:14:22 +02:00
2024-04-23 19:50:31 +02:00

Docker - iventoy

A Docker image running iventoy.

A actions workflow runs daily to check if their is a new release.

https://hub.docker.com/r/sthopeless/iventoy

Docker Compose

This does not work with rootless Docker. The container must be run as root.

If you don't plan on using named volumes, as is used in the example below, you'll have to retrieve the files under /app/data from the container.

---
services:
  iventoy:
    image: sthopeless/iventoy:latest
    container_name: iventoy
    restart: always
    privileged: true
    ports:
      - 26000:26000
      - 16000:16000
      - 10809:10809
      - 67:67/udp
      - 69:69/udp
    volumes:
      - isos:/app/iso
      - config:/app/data
      - /<path to logs>:/app/log
    environment:
      - AUTO_START_PXE=true

volumes:
  isos:
    external: true
  config:
    external: true

Not necessary to expose all the listed ports. https://www.iventoy.com/en/doc_portnum.html

Description
No description provided
Readme 70 KiB
Languages
Dockerfile 83.7%
Shell 16.3%