fix(dozzle): removed login from env as deprecated, disable analytics by default (#2162)
This commit is contained in:
parent
fd6b4c79d2
commit
69ed5e80c5
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user