Added options to disable analytics and to setup username and password

This commit is contained in:
sclaren 2023-05-09 17:00:34 +02:00 committed by Nicolas Meienberger
parent 8d8f113dad
commit b017e18e6d
2 changed files with 25 additions and 1 deletions

View File

@ -14,5 +14,25 @@
"short_desc": "Dozzle is a small web based app to monior Docker logs",
"author": "Amir Raminfar",
"source": "https://github.com/amir20/dozzle",
"form_fields": []
"form_fields": [
{
"type": "text",
"label": "(Optional) Username",
"required": false,
"env_variable": "DOZZLE_USERNAME"
},
{
"type": "password",
"label": "(Optional) Password",
"required": false,
"env_variable": "DOZZLE_PASSWORD"
},
{
"type": "boolean",
"label": "Disable Google Analytics",
"required": false,
"env_variable": "DOZZLE_NO_ANALYTICS"
}
]
}

View File

@ -10,6 +10,10 @@ services:
- ${APP_PORT}:8080
networks:
- tipi_main_network
environment:
- DOZZLE_NO_ANALYTICS=${DOZZLE_NO_ANALYTICS}
- DOZZLE_USERNAME={DOZZLE_USERNAME}
- DOZZLE_PASSWORD={DOZZLE_PASSWORD}
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.dozzle.rule: Host(`${APP_DOMAIN}`)