khuedoan-homelab/metal/roles/pxe-server/files/docker-compose.yml
Khue Doan c2744838ab New pxe server structure
No submodule and string replace script, j2 templates only
2021-02-12 12:37:29 +07:00

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