mirror of
https://github.com/lephisto/pfsense-analytics.git
synced 2025-12-06 12:19:21 +01:00
8 lines
241 B
Docker
8 lines
241 B
Docker
FROM graylog/graylog:3.1
|
|
# Probably a bad idea, but it works for now
|
|
USER root
|
|
RUN mkdir -pv /etc/graylog/server/
|
|
COPY ./getGeo.sh /etc/graylog/server/
|
|
RUN chmod +x /etc/graylog/server/getGeo.sh && /etc/graylog/server/getGeo.sh
|
|
USER graylog
|