Homebox is a household inventory system that helps you track personal belongings across rooms and locations. You can add items with images, categories and details like purchase date and value. It’s useful for home organization, insurance documentation or moving preparation. The web interface is clean and user-friendly. Great for anyone who wants to maintain a digital record of their possessions.
Setup
docker-compose.yaml
version: "3.4"
networks:
docker_net:
external: true
volumes:
data:
driver: local
services:
homebox:
image: ghcr.io/hay-kot/homebox:latest
container_name: homebox
restart: unless-stopped
environment:
- HBOX_LOG_LEVEL=info
- HBOX_LOG_FORMAT=text
- HBOX_WEB_MAX_UPLOAD_SIZE=10
- HBOX_OPTIONS_ALLOW_REGISTRATION=false
volumes:
- data:/data/
ports:
- 3100:7745
networks:
- docker_net