Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.19.1 AS builder
FROM alpine:3.21.3 AS builder

RUN apk add --no-cache \
build-base \
Expand All @@ -9,7 +9,7 @@ RUN apk add --no-cache \

# download goaccess
WORKDIR /goaccess-temp
COPY /assests/goaccess/goaccess-1.9.3.tar.gz goaccess.tar.gz
COPY /assests/goaccess/goaccess-1.9.4.tar.gz goaccess.tar.gz

# set up goacess-debug
WORKDIR /goaccess-debug
Expand All @@ -23,13 +23,13 @@ RUN make install
WORKDIR /goaccess
RUN cp /goaccess-temp/goaccess.tar.gz .
RUN tar --strip-components=1 -xzvf goaccess.tar.gz
RUN sed -i "s/GWSocket<\/a>/GWSocket<\/a> ( <a href='https:\/\/tiny.one\/xgoan'>GOAN<\/a> <span>v1.1.34<\/span> )/" /goaccess/resources/tpls.html
RUN sed -i "s/GWSocket<\/a>/GWSocket<\/a> \/ <a href='https:\/\/tiny.one\/xgoan'>GOAN<\/a> <span>v1.1.35<\/span>/" /goaccess/resources/tpls.html
RUN sed -i "s/bottom: 190px/bottom: 260px/" /goaccess/resources/css/app.css
RUN ./configure --enable-utf8 --enable-geoip=mmdb --with-getline
RUN make
RUN make install

FROM alpine:3.19.1
FROM alpine:3.21.3
RUN apk add --no-cache \
bash \
nginx \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Still in development... You might need to wait a bit if you have a large amount
![Alt text](https://i.ibb.co/fNj9Dcy/goaccess1.jpg "GoAccess Dashboard")

**Dependencies:**
- GoAccess version: 1.9.3
- GeoLite2-City.mmdb (2025-02-25)
- GeoLite2-Country.mmdb (2025-02-25)
- GeoLite2-ASN.mmdb (2025-02-25)
- GoAccess version: 1.9.4
- GeoLite2-City.mmdb (2025-04-10)
- GeoLite2-Country.mmdb (2025-04-10)
- GeoLite2-ASN.mmdb (2025-04-10)

---

Expand Down
Binary file removed assests/goaccess/goaccess-1.9.3.tar.gz
Binary file not shown.
Binary file added assests/goaccess/goaccess-1.9.4.tar.gz
Binary file not shown.
Binary file modified assests/maxmind/GeoLite2-ASN.mmdb
Binary file not shown.
Binary file modified assests/maxmind/GeoLite2-City.mmdb
Binary file not shown.
Binary file modified assests/maxmind/GeoLite2-Country.mmdb
Binary file not shown.
2 changes: 1 addition & 1 deletion resources/scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ source $(dirname "$0")/logs/ncsa_combined.sh
source $(dirname "$0")/logs/nginx_access.sh
source $(dirname "$0")/logs/caddy.sh

goan_version="GOAN v1.1.34"
goan_version="GOAN v1.1.35"
goan_log_path="/opt/log"

goaccess_ping_interval=15
Expand Down
Loading