1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/dnsmasq/pxe/docker-compose.yml
2016-06-20 22:42:27 +08:00

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