Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/kafka/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ RUN set -eux; \
; \
rm openjdk.tgz*; \
\
# Remove JMODs (not needed for runtime, only for jlink custom images)
rm -rf "$JAVA_HOME/jmods"; \
# Remove JMODs and src.zip (not needed for runtime, only for development)
rm -rf "$JAVA_HOME/jmods" "$JAVA_HOME/lib/src.zip"; \
\
apt-mark auto '.*' > /dev/null; \
[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; \
Expand Down
2 changes: 1 addition & 1 deletion docker/kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Tags should be `kafka-<scala_version>-<kafka_version>` e.g `kafak-2.13-2.6.2`
# Upstream base

This is based on [wurstmeister/kafka-docker](https://github.com/wurstmeister/kafka-docker) with the following additions:
1. Use `openjdk 17` in order to support container based resource monitoring
1. Use `openjdk 21` in order to support container based resource monitoring
2. Use custom `log4j.properties` to get all kafka logs to stdout only