fix(dozzle): removed login from env as deprecated, disable analytics by default (#2162)

This commit is contained in:
JigSaw 2024-01-18 22:01:33 +01:00 committed by GitHub
parent fd6b4c79d2
commit 69ed5e80c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 19 deletions

View File

@ -5,7 +5,7 @@
"exposable": true,
"port": 8013,
"id": "dozzle",
"tipi_version": 6,
"tipi_version": 7,
"version": "6.1.0",
"categories": [
"development"
@ -15,20 +15,6 @@
"author": "Amir Raminfar",
"source": "https://github.com/amir20/dozzle",
"form_fields": [
{
"type": "text",
"label": "Username (optional)",
"required": false,
"placeholder": "Username",
"env_variable": "DOZZLE_USERNAME"
},
{
"type": "password",
"label": "Password (optional)",
"placeholder": "Password",
"required": false,
"env_variable": "DOZZLE_PASSWORD"
},
{
"type": "boolean",
"label": "Disable Google Analytics",

View File

@ -1,4 +1,3 @@
version: "3.9"
services:
dozzle:
container_name: dozzle
@ -11,9 +10,7 @@ services:
networks:
- tipi_main_network
environment:
- DOZZLE_NO_ANALYTICS=${DOZZLE_NO_ANALYTICS}
- DOZZLE_USERNAME=${DOZZLE_USERNAME}
- DOZZLE_PASSWORD=${DOZZLE_PASSWORD}
- DOZZLE_NO_ANALYTICS=${DOZZLE_NO_ANALYTICS-true}
labels:
# Main
traefik.enable: true