aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-02-11 16:26:48 +0100
committerOliver Smith <osmith@sysmocom.de>2021-02-11 16:27:23 +0100
commit6f6724178b84b23eddc1c70b990d19a98db5f77c (patch)
tree5c50b6842b5b7c20c2305c55ee4b406d1c99563f
parentce824cc3e17552cc963439f2a25ede39e0c62cda (diff)
ttcn3: use REGISTRY arg with debian-stretch-titan
Allow jenkins to fetch the image from our private docker registry. Outside of jenkins, the image is built locally just like before. Related: OS#5017 Change-Id: I46cc176ea09d8badc359b627d7ce2f459211258c
-rw-r--r--ttcn3-bsc-test/Dockerfile3
-rw-r--r--ttcn3-bscnat-test/Dockerfile3
-rw-r--r--ttcn3-bts-test/Dockerfile3
-rw-r--r--ttcn3-fr-test/Dockerfile3
-rw-r--r--ttcn3-gbproxy-test/Dockerfile3
-rw-r--r--ttcn3-ggsn-test/Dockerfile3
-rw-r--r--ttcn3-hlr-test/Dockerfile3
-rw-r--r--ttcn3-mgw-test/Dockerfile3
-rw-r--r--ttcn3-msc-test/Dockerfile3
-rw-r--r--ttcn3-nitb-sysinfo/Dockerfile3
-rw-r--r--ttcn3-pcu-test/Dockerfile3
-rw-r--r--ttcn3-remsim-test/Dockerfile3
-rw-r--r--ttcn3-sccp-test/Dockerfile3
-rw-r--r--ttcn3-sgsn-test/Dockerfile3
-rw-r--r--ttcn3-sip-test/Dockerfile3
-rw-r--r--ttcn3-smlc-test/Dockerfile3
-rw-r--r--ttcn3-stp-test/Dockerfile3
17 files changed, 34 insertions, 17 deletions
diff --git a/ttcn3-bsc-test/Dockerfile b/ttcn3-bsc-test/Dockerfile
index 10b7267..1923c38 100644
--- a/ttcn3-bsc-test/Dockerfile
+++ b/ttcn3-bsc-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-bscnat-test/Dockerfile b/ttcn3-bscnat-test/Dockerfile
index d970482..50ca926 100644
--- a/ttcn3-bscnat-test/Dockerfile
+++ b/ttcn3-bscnat-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-bts-test/Dockerfile b/ttcn3-bts-test/Dockerfile
index 7abf1a9..8ac7cb8 100644
--- a/ttcn3-bts-test/Dockerfile
+++ b/ttcn3-bts-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-fr-test/Dockerfile b/ttcn3-fr-test/Dockerfile
index ae355d7..4a70c12 100644
--- a/ttcn3-fr-test/Dockerfile
+++ b/ttcn3-fr-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-gbproxy-test/Dockerfile b/ttcn3-gbproxy-test/Dockerfile
index aee22ff..71494d9 100644
--- a/ttcn3-gbproxy-test/Dockerfile
+++ b/ttcn3-gbproxy-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-ggsn-test/Dockerfile b/ttcn3-ggsn-test/Dockerfile
index e67dc9f..d42ac3e 100644
--- a/ttcn3-ggsn-test/Dockerfile
+++ b/ttcn3-ggsn-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-hlr-test/Dockerfile b/ttcn3-hlr-test/Dockerfile
index 36761a7..8480288 100644
--- a/ttcn3-hlr-test/Dockerfile
+++ b/ttcn3-hlr-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-mgw-test/Dockerfile b/ttcn3-mgw-test/Dockerfile
index bd74f79..087dc09 100644
--- a/ttcn3-mgw-test/Dockerfile
+++ b/ttcn3-mgw-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-msc-test/Dockerfile b/ttcn3-msc-test/Dockerfile
index 8ce9828..05610a4 100644
--- a/ttcn3-msc-test/Dockerfile
+++ b/ttcn3-msc-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-nitb-sysinfo/Dockerfile b/ttcn3-nitb-sysinfo/Dockerfile
index 026a465..45bf69e 100644
--- a/ttcn3-nitb-sysinfo/Dockerfile
+++ b/ttcn3-nitb-sysinfo/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-pcu-test/Dockerfile b/ttcn3-pcu-test/Dockerfile
index 2a35db3..e42bca1 100644
--- a/ttcn3-pcu-test/Dockerfile
+++ b/ttcn3-pcu-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-remsim-test/Dockerfile b/ttcn3-remsim-test/Dockerfile
index 0391d0a..caa6da1 100644
--- a/ttcn3-remsim-test/Dockerfile
+++ b/ttcn3-remsim-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-sccp-test/Dockerfile b/ttcn3-sccp-test/Dockerfile
index a818d8b..708a72f 100644
--- a/ttcn3-sccp-test/Dockerfile
+++ b/ttcn3-sccp-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-sgsn-test/Dockerfile b/ttcn3-sgsn-test/Dockerfile
index 2a2e66e..333b5ed 100644
--- a/ttcn3-sgsn-test/Dockerfile
+++ b/ttcn3-sgsn-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-sip-test/Dockerfile b/ttcn3-sip-test/Dockerfile
index bce215a..1324ac0 100644
--- a/ttcn3-sip-test/Dockerfile
+++ b/ttcn3-sip-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-smlc-test/Dockerfile b/ttcn3-smlc-test/Dockerfile
index 21d77a4..5d27ceb 100644
--- a/ttcn3-smlc-test/Dockerfile
+++ b/ttcn3-smlc-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit
diff --git a/ttcn3-stp-test/Dockerfile b/ttcn3-stp-test/Dockerfile
index 073753b..e36935b 100644
--- a/ttcn3-stp-test/Dockerfile
+++ b/ttcn3-stp-test/Dockerfile
@@ -1,5 +1,6 @@
+ARG REGISTRY
ARG USER
-FROM $USER/debian-stretch-titan
+FROM $REGISTRY/$USER/debian-stretch-titan
ARG OSMO_TTCN3_BRANCH="master"
ADD http://git.osmocom.org/osmo-ttcn3-hacks/patch?h=$OSMO_TTCN3_BRANCH /tmp/commit