Dockerimage for ipxe for uefi and bios pxe boot
Install the docker container via command line:
docker pull haferm/ipxe
docker run --name ipxe -p 69:69 -v tftpboot:tftpboot haferm/ipxe
Install the docker container via docker compose:
version: "2.1"
services:
ipxe:
image: haferm/ipxe
container_name: ipxe
ports:
- 69:69/udp
volumes:
- ./tftpboot:/tftpboot
restart: unless-stopped