Added options to disable analytics and to setup username and password
This commit is contained in:
parent
8d8f113dad
commit
b017e18e6d
|
@ -14,5 +14,25 @@
|
||||||
"short_desc": "Dozzle is a small web based app to monior Docker logs",
|
"short_desc": "Dozzle is a small web based app to monior Docker logs",
|
||||||
"author": "Amir Raminfar",
|
"author": "Amir Raminfar",
|
||||||
"source": "https://github.com/amir20/dozzle",
|
"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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,10 @@ services:
|
||||||
- ${APP_PORT}:8080
|
- ${APP_PORT}:8080
|
||||||
networks:
|
networks:
|
||||||
- tipi_main_network
|
- tipi_main_network
|
||||||
|
environment:
|
||||||
|
- DOZZLE_NO_ANALYTICS=${DOZZLE_NO_ANALYTICS}
|
||||||
|
- DOZZLE_USERNAME={DOZZLE_USERNAME}
|
||||||
|
- DOZZLE_PASSWORD={DOZZLE_PASSWORD}
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: ${APP_EXPOSED}
|
traefik.enable: ${APP_EXPOSED}
|
||||||
traefik.http.routers.dozzle.rule: Host(`${APP_DOMAIN}`)
|
traefik.http.routers.dozzle.rule: Host(`${APP_DOMAIN}`)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user