Makefile support for our production infrastructure containers

Change-Id: I901e340d2c5c1e002ecc7efa4570d58ccb7b9229
This commit is contained in:
Harald Welte 2018-06-03 16:11:26 +00:00
parent 28a4e8e589
commit 911fbafbf7
14 changed files with 45 additions and 0 deletions

2
bind9/.release Normal file
View File

@ -0,0 +1,2 @@
release=0.0.0
tag=bind9-0.0.0

20
bind9/Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM debian:stable
LABEL name="bind9" \
description="Bind9 DNS server" \
version="1.0" \
maintainer="laforge@gnumonks.org"
RUN apt-get update && \
apt-get install -y \
bind9 \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /run/named \
&& chown bind:bind /run/named
EXPOSE 53/tcp \
53/udp
VOLUME /etc/named
ENTRYPOINT ["/usr/sbin/named", "-c", "/etc/named/named.conf", "-u", "bind", "-g"]

2
bind9/Makefile Normal file
View File

@ -0,0 +1,2 @@
IMAGE=registry.sysmocom.de/bind9
include ../make/Makefile

1
cgit/.release Normal file
View File

@ -0,0 +1 @@
release=0.0.0

View File

@ -1 +1,3 @@
IMAGE=registry.sysmocom.de/cgit
include ../make/Makefile

1
gerrit/.release Normal file
View File

@ -0,0 +1 @@
release=0.0.0

3
gerrit/Makefile Normal file
View File

@ -0,0 +1,3 @@
IMAGE=registry.sysmocom.de/gerrit
include ../make/Makefile

2
git-daemon/.release Normal file
View File

@ -0,0 +1,2 @@
release=0.0.0
tag=git-daemon-0.0.0

View File

@ -1 +1,3 @@
IMAGE=registry.sysmocom.de/git-daemon
include ../make/Makefile

2
gitolite/.release Normal file
View File

@ -0,0 +1,2 @@
release=0.0.0
tag=gitolite-0.0.0

View File

@ -1 +1,2 @@
IMAGE=registry.sysmocom.de/gitolite
include ../make/Makefile

1
patchwork/.release Normal file
View File

@ -0,0 +1 @@
release=0.0.0

3
patchwork/Makefile Normal file
View File

@ -0,0 +1,3 @@
IMAGE=registry.sysmocom.de/patchwork
include ../make/Makefile

3
redmine/Makefile Normal file
View File

@ -0,0 +1,3 @@
IMAGE=registry.sysmocom.de/redmine
include ../make/Makefile