mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-04 10:34:49 +02:00
17 lines
303 B
YAML
17 lines
303 B
YAML
pxe:
|
|
image: vimagick/dnsmasq
|
|
net: host
|
|
volumes:
|
|
- ./dnsmasq.conf:/etc/dnsmasq.d/dnsmasq.conf
|
|
- ./tftpboot:/tftpboot
|
|
restart: always
|
|
|
|
web:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
- ./html:/var/lib/nginx/html
|
|
restsart: always
|