mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
21 lines
594 B
YAML
21 lines
594 B
YAML
services:
|
|
dnsmasq:
|
|
build: ./dnsmasq
|
|
volumes:
|
|
- ./data/pxe-config/dnsmasq.conf:/etc/dnsmasq.conf
|
|
- ./data/pxe-config/grub.cfg:/tftp/grub.cfg
|
|
- ./data/os/EFI/BOOT/grubx64.efi:/tftp/grubx64.efi
|
|
- ./data/os/images/pxeboot/initrd.img:/tftp/initrd.img
|
|
- ./data/os/images/pxeboot/vmlinuz:/tftp/vmlinuz
|
|
network_mode: host
|
|
cap_add:
|
|
- NET_ADMIN
|
|
http:
|
|
build: ./http
|
|
network_mode: host
|
|
volumes:
|
|
- ./data/os:/usr/share/nginx/html/os
|
|
- ./data/init-config/:/usr/share/nginx/html/init-config
|
|
environment:
|
|
NGINX_PORT: 80
|