You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
745 B
21 lines
745 B
version: "3"
|
|
|
|
services:
|
|
goaccess:
|
|
image: 'xavierh/goaccess-for-nginxproxymanager:latest'
|
|
container_name: goaccess
|
|
restart: always
|
|
ports:
|
|
- '7880:7880'
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- SKIP_ARCHIVED_LOGS=False #optional
|
|
- DEBUG=False #optional
|
|
- BASIC_AUTH=False #optional
|
|
- BASIC_AUTH_USERNAME=user #optional
|
|
- BASIC_AUTH_PASSWORD=pass #optional
|
|
- EXCLUDE_IPS=127.0.0.1 #optional - comma delimited
|
|
- LOG_TYPE=NPM #optional - more information below
|
|
volumes:
|
|
- ~/docker/npm/data/logs:/opt/log
|
|
# - /path/to/host/custom:/opt/custom #optional, required if using log_type = CUSTOM |