Add HomeBox

This commit is contained in:
DrMxrcy 2023-02-28 17:57:11 -05:00
parent ecbbae9849
commit 49e5436e03
5 changed files with 71 additions and 0 deletions

View File

@ -23,6 +23,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
- [Headscale](https://github.com/juanfont/headscale) - An open source, self-hosted implementation of the Tailscale control 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
- [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
- [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

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

@ -0,0 +1,25 @@
{
"$schema": "../schema.json",
"name": "HomeBox",
"port": 8150,
"available": true,
"exposable": true,
"id": "homebox",
"tipi_version": 1,
"version": "v0.8.2",
"categories": ["development"],
"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": "https://github.com/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,20 @@
[![](https://github.com/hay-kot/homebox/raw/main/docs/docs/assets/img/lilbox.svg)](https://github.com/hay-kot/homebox/blob/main/docs/docs/assets/img/lilbox.svg)
# [](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)
```shell
docker run --name=homebox \
--restart=always \
--publish=3100:7745 \
ghcr.io/hay-kot/homebox:latest
```
## [](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: 51 KiB