mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-06 17:18:51 +07:00
c2744838ab
No submodule and string replace script, j2 templates only
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
|