diff --git a/README.md b/README.md index 91f89f1d..b9035860 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/apps/homebox/config.json b/apps/homebox/config.json new file mode 100644 index 00000000..a5295d8a --- /dev/null +++ b/apps/homebox/config.json @@ -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" + } + ] +} diff --git a/apps/homebox/docker-compose.yml b/apps/homebox/docker-compose.yml new file mode 100644 index 00000000..7c2d927a --- /dev/null +++ b/apps/homebox/docker-compose.yml @@ -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 \ No newline at end of file diff --git a/apps/homebox/metadata/description.md b/apps/homebox/metadata/description.md new file mode 100644 index 00000000..eb5d9449 --- /dev/null +++ b/apps/homebox/metadata/description.md @@ -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) \ No newline at end of file diff --git a/apps/homebox/metadata/logo.jpg b/apps/homebox/metadata/logo.jpg new file mode 100644 index 00000000..28cf5829 Binary files /dev/null and b/apps/homebox/metadata/logo.jpg differ