chore(homarr): change password variable name to be unique

This commit is contained in:
Nicolas Meienberger 2023-02-21 21:25:36 +01:00
parent d3e4098625
commit 48d0d66b26
2 changed files with 5 additions and 7 deletions

View File

@ -7,9 +7,7 @@
"id": "homarr", "id": "homarr",
"tipi_version": 7, "tipi_version": 7,
"version": "0.11.4", "version": "0.11.4",
"categories": [ "categories": ["utilities"],
"utilities"
],
"description": "A homepage for your server.", "description": "A homepage for your server.",
"short_desc": "Homarr is a simple and lightweight homepage for your server, that helps you easily access all of your services in one place.", "short_desc": "Homarr is a simple and lightweight homepage for your server, that helps you easily access all of your services in one place.",
"author": "ajnart", "author": "ajnart",
@ -22,7 +20,7 @@
"max": 50, "max": 50,
"min": 3, "min": 3,
"required": true, "required": true,
"env_variable": "PASSWORD" "env_variable": "HOMARR_PASSWORD"
} }
] ]
} }

View File

@ -1,4 +1,4 @@
version: "3.7" version: '3.7'
services: services:
homarr: homarr:
container_name: homarr container_name: homarr
@ -9,7 +9,7 @@ services:
- ${APP_DATA_DIR}/data/icons:/app/public/icons - ${APP_DATA_DIR}/data/icons:/app/public/icons
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
environment: environment:
- PASSWORD=${PASSWORD} - PASSWORD=${HOMARR_PASSWORD}
- PGID=1000 - PGID=1000
- TZ=${TZ} - TZ=${TZ}
ports: ports: