mirror of
https://github.com/khuedoan/homelab.git
synced 2025-07-06 08:22:10 +07:00
22 lines
451 B
YAML
22 lines
451 B
YAML
version: "3"
|
|
|
|
services:
|
|
dhcp:
|
|
build: ./dhcp
|
|
volumes:
|
|
- ./dhcp/dhcpd.conf:/etc/dhcp/dhcpd.conf
|
|
network_mode: host
|
|
tftp:
|
|
build: ./tftp
|
|
network_mode: host
|
|
volumes:
|
|
- ./tftp/grub.cfg:/var/lib/tftpboot/grub.cfg
|
|
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
|