Sign inSign up

n1ghtm4r3x/iventoy

By n1ghtm4r3x

Updated 20 days ago

Minimal Iventoy PXE server based on Debian distroless

Image
1

5.8K

n1ghtm4r3x/iventoy repository overview

Minimal Iventoy PXE server image based on Debian distroless, only the required dependencies to run Iventoy are added.

Docker:

docker volume create data
docker run -d --net host --name iventoy --cap-drop ALL --cap-add SYS_ADMIN --cap-add NET_BIND_SERVICE --security-opt seccomp=unconfined --security-opt apparmor=unconfined -v ./iso:/opt/iventoy/iso -v data:/opt/iventoy/data --restart unless-stopped n1ghtm4r3x/iventoy

Docker compose:

services:
  iventoy:
    image: n1ghtm4r3x/iventoy
    container_name: iventoy
    network_mode: host
    cap_drop:
      - ALL
    cap_add:
      - SYS_ADMIN
      - NET_BIND_SERVICE
    security_opt:
      - seccomp=unconfined
      - apparmor=unconfined
    volumes:
      - ./iso:/opt/iventoy/iso
      - data:/opt/iventoy/data
    restart: unless-stopped

volumes:
  data:

Tag summary

Content type

Image

Digest

sha256:e18c015ae

Size

29.5 MB

Last updated

20 days ago

docker pull n1ghtm4r3x/iventoy