mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-07 01:28:42 +07:00
28 lines
454 B
YAML
28 lines
454 B
YAML
![]() |
version: "3"
|
||
|
|
||
|
services:
|
||
|
dhcp:
|
||
|
build: ./dhcp
|
||
|
network_mode: host
|
||
|
environment:
|
||
|
- SUBNET
|
||
|
- NETMASK
|
||
|
- GATEWAY
|
||
|
- RANGE_START
|
||
|
- RANGE_END
|
||
|
- PXE_SERVER
|
||
|
tftp:
|
||
|
build: ./tftp
|
||
|
network_mode: host
|
||
|
environment:
|
||
|
- PXE_SERVER
|
||
|
volumes:
|
||
|
- ./mnt:/mnt
|
||
|
http:
|
||
|
build: ./http
|
||
|
network_mode: host
|
||
|
volumes:
|
||
|
- ./mnt:/usr/share/nginx/html/CentOS
|
||
|
environment:
|
||
|
NGINX_PORT: 80
|