Skip to content

Commit 51dc982

Browse files
committed
install plugin
committed with --no-check bc yolo
1 parent 285446a commit 51dc982

3 files changed

Lines changed: 24 additions & 0 deletions

File tree

.dockerignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.github/
2+
docs/
3+
.DS_Store
4+
.gitignore
5+
docker-compose.yaml
6+
LICENSE
7+
Makefile
8+
README.md

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.DS_Store

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1+
FROM busybox:stable AS builder
2+
3+
# TODO: should this be a build arg, hardcoded, or env (like it is currently)
4+
ENV GRAYLOG_VERSION=4.0.2
5+
6+
WORKDIR /
7+
8+
RUN wget downloads.graylog.org/releases/graylog-integrations/graylog-integrations-plugins-${GRAYLOG_VERSION}.tgz \
9+
&& tar -zxvf graylog-integrations-plugins-${GRAYLOG_VERSION}.tgz
10+
111
FROM graylog/graylog:4.0.2
12+
13+
ENV GRAYLOG_VERSION=4.0.2
14+
15+
COPY --from=builder /graylog-integrations-plugins-${GRAYLOG_VERSION}/plugin/graylog-plugin-integrations-${GRAYLOG_VERSION}.jar /usr/share/graylog/plugin

0 commit comments

Comments
 (0)