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 a1dd314 commit 16402a3Copy full SHA for 16402a3
.github/workflows/docker.yml
@@ -49,6 +49,11 @@ jobs:
49
FOLDER: scripts/monitor
50
IMAGE: monitor
51
README: ""
52
+ - name: elasticsearch
53
+ FOLDER: scripts/elasticsearch
54
+ IMAGE: elasticsearch
55
+ README: ""
56
+
57
steps:
58
- uses: actions/checkout@v2
59
scripts/elasticsearch/Dockerfile
@@ -0,0 +1,7 @@
1
+FROM elasticsearch:2
2
3
+RUN apt-get update && apt-get install -y zip && rm -rf /var/lib/apt/lists/* && \
4
+ for x in $(find /usr/share/elasticsearch -name \*.jar); do \
5
+ zip -d $x org/apache/log4j/net/JMSAppender.class org/apache/log4j/net/SocketServer.class | grep 'deleting:' && echo "fixed $x"; \
6
+ done; \
7
+ echo "removed JMSAppender and SocketServer"
0 commit comments