1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-03 13:21:49 +02:00
dockerfiles/dnsmasq/pxe/docker-compose.yml

17 lines
303 B
YAML
Raw Normal View History

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