Compare commits

..

2 Commits

Author SHA1 Message Date
Kameron Kenny 3ed25be851
switch to debian 2024-06-18 10:22:44 -04:00
Kameron Kenny e04690db2c
GeoLite2 data 2024-06-18 10:22:08 -04:00
6 changed files with 23 additions and 8 deletions

View File

@ -1,15 +1,15 @@
FROM lscr.io/linuxserver/syslog-ng:latest FROM debian:latest
MAINTAINER Kameron Kenny <kkenny379@gmail.com>
LABEL version="20240617.1.7" LABEL version="20240618.1.1"
LABEL description="syslog-ng" LABEL description="Debian Based syslog-ng"
RUN apk update RUN apt-get update
RUN apk upgrade RUN apt-get -y upgrade
RUN apt-get -y install syslog-ng syslog-ng-core syslog-ng-mod-add-contextual-data syslog-ng-mod-amqp syslog-ng-mod-geoip2 syslog-ng-mod-getent syslog-ng-mod-http syslog-ng-mod-journal syslog-ng-mod-map-value-pairs syslog-ng-mod-slog syslog-ng-mod-smtp syslog-ng-mod-snmp syslog-ng-mod-snmptrapd-parser syslog-ng-mod-tag-parser syslog-ng-mod-xml-parser syslog-ng-scl
RUN mkdir -p /config RUN mkdir -p /config
COPY config /config COPY config /config
RUN mkdir -p /config/GeoIP RUN mkdir -p /config/GeoIP
COPY data/GeoIP/GeoLite2-City.mmdb /config/GeoIP/GeoLite2-City.mmdb COPY data/GeoIP/GeoLite2-City.mmdb /config/GeoIP/GeoLite2-City.mmdb
RUN apk add libmaxminddb

15
Dockerfile.orig Normal file
View File

@ -0,0 +1,15 @@
FROM lscr.io/linuxserver/syslog-ng:latest
LABEL version="20240617.1.7"
LABEL description="syslog-ng"
RUN apk update
RUN apk upgrade
RUN mkdir -p /config
COPY config /config
RUN mkdir -p /config/GeoIP
COPY data/GeoIP/GeoLite2-City.mmdb /config/GeoIP/GeoLite2-City.mmdb
RUN apk add libmaxminddb

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -10,7 +10,7 @@ services:
syslog-ng: syslog-ng:
build: build:
dockerfile: Dockerfile dockerfile: Dockerfile
image: docker-registry1.in.thelinuxpro.net:5000/tlp/syslog-ng:240617.1.7 image: docker-registry1.in.thelinuxpro.net:5000/tlp/syslog-ng:240618.1.1
container_name: syslog-ng container_name: syslog-ng
environment: environment:
- PUID=0 - PUID=0