Skip to content

:simple-homebox: Homebox

🛠 Installation

Default Port: 7745

homelab/docker/homebox

task up
docker compose up

âš™ Config

homelab/docker/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
homelab/docker/homebox/compose.yaml

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.2.217:7745"
        passHostHeader: true
#endregion

Task List


🔗 References