Skip to content

:simple-homebox: Homebox

🛠 Installation

Default Port: 7745

bash -c "$(curl -sL https://github.com/community-scripts/ProxmoxVE/raw/main/ct/homebox.sh)"
bash -c "$(curl -sL https://github.com/asylumexp/Proxmox/raw/main/ct/homebox.sh)"

âš™ Config

homelab/lxc/homebox/.env

# Homebox Configuration
# https://homebox.software/en/installation

# General
HBOX_MODE=production
HBOX_LOG_LEVEL=info
HBOX_LOG_FORMAT=text

# Web
HBOX_WEB_PORT=7745
HBOX_WEB_MAX_UPLOAD_SIZE=10

# Storage
HBOX_STORAGE_DATA=/data

# Options
HBOX_OPTIONS_ALLOW_REGISTRATION=true
HBOX_OPTIONS_ALLOW_ANALYTICS=false

# Service
CONFIG_DIR=/etc/homebox
INSTALL_DIR=/opt/homebox
SERVICE_NAME=homebox

Traefik

homelab/pve/traefik/conf.d/homebox.yaml
---
http:
 #region routers 
  routers:
    homebox:
      entryPoints:
        - "websecure"
      rule: "Host(`homebox.l.nicholaswilde.io`)"
      middlewares:
        - default-headers@file
        - https-redirectscheme@file
      tls: {}
      service: homebox

#endregion
#region services
  services:
    homebox:
      loadBalancer:
        servers:
          - url: "http://192.168.1.115:7745"
        passHostHeader: true
#endregion

Task List

task: Available tasks for this project:
* decrypt:       Decrypt .env using SOPS
* enable:        Enable service
* encrypt:       Encrypt .env using SOPS
* export:        Export the task list
* init:          Init
* mklinks:       Make client symlinks
* restart:       Resart service
* start:         Start service
* status:        Service status
* stop:          Stop service
* up:            Tun Docker compose in the foreground.
* up-d:          Run Docker compose in the background.
* update:        Update running containers
* upgrade:       upgrade

🔗 References