From 7d79a8897a2330f5f167482ca4813e85bd542029 Mon Sep 17 00:00:00 2001 From: "ortiz.jacob" Date: Tue, 1 Jun 2021 15:42:59 -0400 Subject: [PATCH 1/2] update dockerfile --- Dockerfile | 5 ++--- scripts/docker-entrypoint.sh | 9 +++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 scripts/docker-entrypoint.sh diff --git a/Dockerfile b/Dockerfile index 0ec7c31..84dba48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ - -ARG BASE_REGISTRY=registry1.dsop.io/ironbank -ARG BASE_IMAGE=redhat/openjdk/openjdk11 +ARG BASE_REGISTRY=registry1.dso.mil +ARG BASE_IMAGE=ironbank/redhat/openjdk/openjdk11 ARG BASE_TAG=1.11 FROM tchiotludo/akhq:0.17.0 as base diff --git a/scripts/docker-entrypoint.sh b/scripts/docker-entrypoint.sh new file mode 100644 index 0000000..ef7ff08 --- /dev/null +++ b/scripts/docker-entrypoint.sh @@ -0,0 +1,9 @@ + #!/usr/bin/env sh + +set -e + +if [ "${AKHQ_CONFIGURATION}" ]; then + echo "${AKHQ_CONFIGURATION}" > /app/application.yml +fi + +exec "$@" \ No newline at end of file -- GitLab From 914309f33f2e98d902647082452f39f79c858352 Mon Sep 17 00:00:00 2001 From: "ortiz.jacob" Date: Tue, 1 Jun 2021 15:46:54 -0400 Subject: [PATCH 2/2] update dockerfile --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15402c5..ee049db 100644 --- a/README.md +++ b/README.md @@ -650,7 +650,7 @@ Documentation on Confluent 5.5 and schema references can be found [here](https:/ ## Credits -Many thanks to: +Many thanks to: * [JetBrains](https://www.jetbrains.com/?from=AKHQ) for their free OpenSource license. * Apache, Apache Kafka, Kafka, and associated open source project names are trademarks of the Apache Software Foundation. AKHQ is not affiliated with, endorsed by, or otherwise associated with the Apache Software. -- GitLab