22 lines
563 B
YAML
22 lines
563 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
goaccess:
|
|
image: registry.karaolidis.com/nikas36/goaccess-docker
|
|
restart: unless-stopped
|
|
volumes:
|
|
- '/home/nick/configs/goaccess/config:/config'
|
|
- '/home/nick/configs/goaccess/GeoLite2-City.mmdb:/GeoLite2-City.mmdb'
|
|
- '/home/nick/configs/routing/nginx/log:/opt/log:ro'
|
|
environment:
|
|
- 'PGID=1000'
|
|
- 'PUID=1000'
|
|
networks:
|
|
- default
|
|
- routing
|
|
|
|
networks:
|
|
routing:
|
|
external: true
|
|
name: routing
|