1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/dnsmasq/pxe/docker-compose.yml

17 lines
303 B
YAML
Raw Normal View History

2016-06-20 13:33:42 +00:00
pxe:
image: vimagick/dnsmasq
2016-06-20 14:42:27 +00:00
net: host
2016-06-20 13:33:42 +00:00
volumes:
- ./dnsmasq.conf:/etc/dnsmasq.d/dnsmasq.conf
- ./tftpboot:/tftpboot
restart: always
2016-06-20 14:42:27 +00:00
web:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./html:/var/lib/nginx/html
restsart: always