From 48d0d66b265b5c135b99499c77c9f8904dd8c6fe Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Tue, 21 Feb 2023 21:25:36 +0100 Subject: [PATCH] chore(homarr): change password variable name to be unique --- apps/homarr/config.json | 8 +++----- apps/homarr/docker-compose.yml | 4 ++-- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/apps/homarr/config.json b/apps/homarr/config.json index 4bd01e0d..14493caa 100644 --- a/apps/homarr/config.json +++ b/apps/homarr/config.json @@ -7,22 +7,20 @@ "id": "homarr", "tipi_version": 7, "version": "0.11.4", - "categories": [ - "utilities" - ], + "categories": ["utilities"], "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.", "author": "ajnart", "source": "https://github.com/ajnart/homarr", "website": "https://discord.gg/C2WTXkzkwK", - "form_fields": [ + "form_fields": [ { "type": "password", "label": "Password", "max": 50, "min": 3, "required": true, - "env_variable": "PASSWORD" + "env_variable": "HOMARR_PASSWORD" } ] } diff --git a/apps/homarr/docker-compose.yml b/apps/homarr/docker-compose.yml index a48b5446..bcbb8bd1 100644 --- a/apps/homarr/docker-compose.yml +++ b/apps/homarr/docker-compose.yml @@ -1,4 +1,4 @@ -version: "3.7" +version: '3.7' services: homarr: container_name: homarr @@ -9,7 +9,7 @@ services: - ${APP_DATA_DIR}/data/icons:/app/public/icons - /var/run/docker.sock:/var/run/docker.sock environment: - - PASSWORD=${PASSWORD} + - PASSWORD=${HOMARR_PASSWORD} - PGID=1000 - TZ=${TZ} ports: