gns3-registry/docker/dhcp/Dockerfile
Julien Duponchelle 0e3e2f8392
A basic DHCP container.
This container provide a basic DHCP server that you can drop
in your topology and configure.
2016-04-04 18:31:27 +02:00

10 lines
161 B
Docker

FROM alpine:3.3
MAINTAINER developers@gns3.net
RUN apk add --update dnsmasq && rm -rf /var/cache/apk/*
VOLUME /etc/dnsmasq
COPY boot.sh .
CMD /bin/sh boot.sh