7436bf6e2e
C changes: - gstorage.c: encode continent into root key for --persist --restore survival - gholder.c: decode continent from root + lat/lng storage - commons.h: add lat/lng fields to GMetrics struct - geoip2.c/geoip1.h: extract coordinates from MMDB - json.c: output lat/lng in geolocation JSON JS changes: - Remove cityIndex guard for static HTML city dots - TopoJSON lat/lng fallback for city coordinates - updateMap fallback city collection - Dynamic orthographic center based on visitor count - Mercator stays at [0,15] for full world view Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
1.2 KiB
Markdown
32 lines
1.2 KiB
Markdown
|
|
# Docker image features
|
|
|
|
* This command uses the language set for this system. If that does not support it will be output in English. [**Supported Language**](https://github.com/allinurl/goaccess/raw/master/po/LINGUAS)
|
|
|
|
* This image supports building on the ARM architecture (e.g. Raspberry Pi)
|
|
|
|
* Do you want to change the timezone? Use the `-e` option to pass the time-zone setting to Docker. (e.g. `-e TZ="America/New_York"`)
|
|
|
|
* The container is built with geo-location support (see [the manual](https://goaccess.io/man#options)). To enable the respective panel, mount the geolocation database using `-v /path/to/GeoLite2-City.mmdb:/GeoLite2-City.mmdb` and specify `--geoip-database /GeoLite2-City.mmdb` when running GoAccess.
|
|
|
|
* If you made changes to the config file after building the image, you don't have to rebuild from scratch. Simply restart the container:
|
|
|
|
```
|
|
docker restart goaccess
|
|
```
|
|
|
|
* If you had already run the container, you may have to stop and remove it first:
|
|
|
|
```
|
|
docker stop goaccess
|
|
docker rm goaccess
|
|
```
|
|
|
|
* The container and image can be completely removed as follows:
|
|
|
|
```
|
|
docker stop goaccess
|
|
docker rm goaccess
|
|
docker rmi allinurl/goaccess
|
|
```
|