mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 15:28:11 +07:00
23 lines
598 B
YAML
23 lines
598 B
YAML
version: "3"
|
|
|
|
services:
|
|
dhcp:
|
|
build: ./dhcp
|
|
network_mode: host
|
|
tftp:
|
|
build: ./tftp
|
|
network_mode: host
|
|
volumes:
|
|
- ./mnt/EFI/fedora/grubx64.efi:/var/lib/tftpboot/grubx64.efi
|
|
- ./mnt/images/ignition.img:/var/lib/tftpboot/ignition.img
|
|
- ./mnt/images/pxeboot/initrd.img:/var/lib/tftpboot/initrd.img
|
|
- ./mnt/images/pxeboot/vmlinuz:/var/lib/tftpboot/vmlinuz
|
|
http:
|
|
build: ./http
|
|
network_mode: host
|
|
volumes:
|
|
- ./mnt:/usr/share/nginx/html/CoreOS
|
|
- ./http/ignition/:/usr/share/nginx/html/ignition
|
|
environment:
|
|
NGINX_PORT: 80
|