diff --git a/apps/homarr/config.json b/apps/homarr/config.json index 67ed9fa7..14493caa 100644 --- a/apps/homarr/config.json +++ b/apps/homarr/config.json @@ -5,15 +5,22 @@ "exposable": true, "port": 8102, "id": "homarr", - "tipi_version": 6, - "version": "0.10.7", - "categories": [ - "utilities" - ], + "tipi_version": 7, + "version": "0.11.4", + "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": "HOMARR_PASSWORD" + } + ] } diff --git a/apps/homarr/docker-compose.yml b/apps/homarr/docker-compose.yml index 24078c5b..bcbb8bd1 100644 --- a/apps/homarr/docker-compose.yml +++ b/apps/homarr/docker-compose.yml @@ -1,12 +1,17 @@ -version: "3.7" +version: '3.7' services: homarr: container_name: homarr - image: ghcr.io/ajnart/homarr:0.10.7 + image: ghcr.io/ajnart/homarr:0.11.4 restart: unless-stopped volumes: - ${APP_DATA_DIR}/data/config:/app/data/configs + - ${APP_DATA_DIR}/data/icons:/app/public/icons - /var/run/docker.sock:/var/run/docker.sock + environment: + - PASSWORD=${HOMARR_PASSWORD} + - PGID=1000 + - TZ=${TZ} ports: - ${APP_PORT}:7575 networks: