Files
pfsense-analytics/Docker/graylog/Dockerfile
MatthewJSalerno 1051c95fca Updated the graylog image to pull in the GeoIP when built.
To update the GeoIP all you need to do is rebuild the image
(docker-compose build)
2019-11-22 23:43:42 -05:00

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