We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea3f778 commit 7bbb827Copy full SHA for 7bbb827
docker/usr/local/bin/docker-entrypoint.sh
@@ -6,4 +6,9 @@ if [ "${AKHQ_CONFIGURATION}" ]; then
6
echo "${AKHQ_CONFIGURATION}" > /app/application.yml
7
fi
8
9
-exec "$@"
+# We currently override the base image ENTRYPOINT in our Dockerfile making it harder
10
+# to get access to the CA certificates feature provided by the base image ENTRYPOINT:
11
+# https://github.com/docker-library/docs/blob/master/eclipse-temurin/content.md#can-i-add-my-internal-ca-certificates-to-the-truststore
12
+# To fix this issue, we invoke the base image ENTRYPOINT script (/__cacert_entrypoint.sh) before the arguments.
13
+# Credits to https://superuser.com/a/1460890
14
+exec /__cacert_entrypoint.sh "$@"
0 commit comments