homebox

GitHub

A continuation of HomeBox the inventory and organization system built for the Home User

RAW Compose
1. Pull Image docker pull library/homebox
2. 1-Click Launch Command docker run -d -p 3100:3100 --name homebox homebox
3. Compose Deployment docker compose up -d
docker-compose.yml
Download .yml
services:
  homebox:
    image: homebox
    build:
      context: .
      dockerfile: ./Dockerfile
      args:
        - COMMIT=head
        - BUILD_TIME=0001-01-01T00:00:00Z
      x-bake:
        platforms:
            - linux/amd64
            - linux/arm64
            - linux/arm
    environment:
      - HBOX_LOGGER_LEVEL=-1
    ports:
      - 3100:7745