mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-21 13:47:49 +00:00
0e3e2f8392
This container provide a basic DHCP server that you can drop in your topology and configure.
10 lines
161 B
Docker
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
|