Merge branch 'DrMxrcy-app/homebox'

This commit is contained in:
Nicolas Meienberger 2023-03-11 17:09:12 +01:00
commit 869795a572
5 changed files with 62 additions and 0 deletions

View File

@ -28,6 +28,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
- [HedgeDoc](https://github.com/hedgedoc/hedgedoc) - A Collaborative Markdown and Note Taking App - [HedgeDoc](https://github.com/hedgedoc/hedgedoc) - A Collaborative Markdown and Note Taking App
- [Homarr](https://github.com/ajnart/homarr) - A homepage for your server - [Homarr](https://github.com/ajnart/homarr) - A homepage for your server
- [Home Assistant](https://github.com/home-assistant/core) - Open source home automation that puts local control and privacy first - [Home Assistant](https://github.com/home-assistant/core) - Open source home automation that puts local control and privacy first
- [HomeBox](https://github.com/hay-kot/homebox) - Homebox is the inventory and organization system built for the Home User
- [Immich](https://github.com/immich-app/immich) - Photo and video backup solution directly from your mobile phone - [Immich](https://github.com/immich-app/immich) - Photo and video backup solution directly from your mobile phone
- [Invidious](https://github.com/iv-org/invidious) - An alternative front-end to YouTube - [Invidious](https://github.com/iv-org/invidious) - An alternative front-end to YouTube
- [Jackett](https://github.com/Jackett/Jackett) - API Support for your favorite torrent trackers - [Jackett](https://github.com/Jackett/Jackett) - API Support for your favorite torrent trackers

25
apps/homebox/config.json Normal file
View File

@ -0,0 +1,25 @@
{
"$schema": "../schema.json",
"name": "HomeBox",
"port": 7745,
"available": true,
"exposable": true,
"id": "homebox",
"tipi_version": 1,
"version": "v0.8.2",
"categories": ["utilities"],
"description": "Homebox is the inventory and organization system built for the Home User",
"short_desc": "Homebox is the inventory and organization system built for the Home User",
"author": "hay-kot",
"source": "https://github.com/hay-kot/homebox",
"form_fields": [
{
"type": "text",
"label": "Allow Users Registration",
"hint": "true or false if you want to allow self registration.",
"placeholder": "false",
"required": true,
"env_variable": "HBOX_OPTIONS_ALLOW_REGISTRATION"
}
]
}

View File

@ -0,0 +1,25 @@
version: "3.4"
services:
homebox:
image: ghcr.io/hay-kot/homebox:v0.8.2
container_name: homebox
restart: always
environment:
- HBOX_LOG_LEVEL=info
- HBOX_LOG_FORMAT=text
- HBOX_WEB_MAX_UPLOAD_SIZE=10
- HBOX_OPTIONS_ALLOW_REGISTRATION=${HBOX_OPTIONS_ALLOW_REGISTRATION}
volumes:
- ${APP_DATA_DIR}/data/homebox-data:/data/
ports:
- ${APP_PORT}:7745
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.homebox.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.homebox.entrypoints: websecure
traefik.http.routers.homebox.service: homebox
traefik.http.routers.homebox.tls.certresolver: myresolver
traefik.http.services.homebox.loadbalancer.server.port: 7745

View File

@ -0,0 +1,11 @@
# [](https://github.com/hay-kot/homebox/blob/main/README.md#-homebox-)HomeBox
[Docs](https://hay-kot.github.io/homebox/) | [Demo](https://homebox.fly.dev) | [Discord](https://discord.gg/tuncmNrE4z)
## [](https://github.com/hay-kot/homebox/blob/main/README.md#quick-start)Quick Start
[Configuration & Docker Compose](https://hay-kot.github.io/homebox/quick-start)
## [](https://github.com/hay-kot/homebox/blob/main/README.md#credits)Credits
- Logo by [@lakotelman](https://github.com/lakotelman)

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB