pespin has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/docker-playground/+/36998?usp=email )


Change subject: Introduce dnsmasq docker container
......................................................................

Introduce dnsmasq docker container

This container will be used by the ttcn3-asterisk testsuite setup, so
that asterisk can resolve NAPTR nameservers for the IMS 3gpp DNS.

Change-Id: Ic1490334375c2a9b11b923a6757e844faf524634
---
A dnsmasq/Dockerfile
A dnsmasq/Makefile
2 files changed, 31 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/docker-playground 
refs/changes/98/36998/1

diff --git a/dnsmasq/Dockerfile b/dnsmasq/Dockerfile
new file mode 100644
index 0000000..9a28464
--- /dev/null
+++ b/dnsmasq/Dockerfile
@@ -0,0 +1,17 @@
+FROM   debian:stable
+
+LABEL  name="dnsmasq" \
+       description="Dnsmasq Server" \
+       version="1.0" \
+       maintainer="[email protected]"
+
+RUN    apt-get update && \
+       apt-get install -y \
+               dnsmasq
+
+EXPOSE 53/tcp \
+       53/udp
+
+VOLUME /etc/dnsmasq
+
+CMD    ["/bin/sh", "-c", "dnsmasq -d -C /data/dnsmasq.conf >/data/dnsmasq.log 
2>&1"]
diff --git a/dnsmasq/Makefile b/dnsmasq/Makefile
new file mode 100644
index 0000000..59dce87
--- /dev/null
+++ b/dnsmasq/Makefile
@@ -0,0 +1,2 @@
+IMAGE=registry.sysmocom.de/dnsmasq
+include ../make/Makefile

--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/36998?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: Ic1490334375c2a9b11b923a6757e844faf524634
Gerrit-Change-Number: 36998
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-MessageType: newchange

Reply via email to