Merge branch 'DrMxrcy-updates/homarr-0.11.4'

This commit is contained in:
Nicolas Meienberger 2023-02-21 21:27:09 +01:00
commit dc2dd6a915
2 changed files with 20 additions and 8 deletions

View File

@ -5,15 +5,22 @@
"exposable": true, "exposable": true,
"port": 8102, "port": 8102,
"id": "homarr", "id": "homarr",
"tipi_version": 6, "tipi_version": 7,
"version": "0.10.7", "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",
"source": "https://github.com/ajnart/homarr", "source": "https://github.com/ajnart/homarr",
"website": "https://discord.gg/C2WTXkzkwK", "website": "https://discord.gg/C2WTXkzkwK",
"form_fields": [] "form_fields": [
{
"type": "password",
"label": "Password",
"max": 50,
"min": 3,
"required": true,
"env_variable": "HOMARR_PASSWORD"
}
]
} }

View File

@ -1,12 +1,17 @@
version: "3.7" version: '3.7'
services: services:
homarr: homarr:
container_name: homarr container_name: homarr
image: ghcr.io/ajnart/homarr:0.10.7 image: ghcr.io/ajnart/homarr:0.11.4
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ${APP_DATA_DIR}/data/config:/app/data/configs - ${APP_DATA_DIR}/data/config:/app/data/configs
- ${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:
- PASSWORD=${HOMARR_PASSWORD}
- PGID=1000
- TZ=${TZ}
ports: ports:
- ${APP_PORT}:7575 - ${APP_PORT}:7575
networks: networks: