Skip to main content

docker-compose

services:
  homebox:
    image: ghcr.io/sysadminsmedia/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=true #can be changed to false after first time registration
    - TZ=America/Santo_Domingo
    volumes:
      - ./:/data/
      
    ports:
      - 3100:7745

volumes:
   homebox:
     driver: local