Skip to main content

KodBox

KodBox is an open-source, browser-based file management system — think of it as your own private cloud drive. It allows you to upload, view, edit, and share files easily from any browser. KodBox supports multiple users, file sharing, online previews, and editing for various file formats.

It’s perfect for individuals or teams who want to run a private cloud storage service on a local network or personal server. With plugin support and a clean user interface, KodBox is also widely used for internal enterprise file management and team collaboration.

Docker Compose Setup

Here’s a simple docker-compose.yml to get KodBox up and running:

version: '3.5'

services:
kodbox:
image: harbor.spacemit.com/application/kodbox:1.50.02
restart: always
ports:
- 8080:80
volumes:
- "./site:/var/www/html" # ./site is the site directory location and can be modified.

How to Access

After starting the service with Docker, open your browser and go to:

http://HOST_IP:8080

Replace HOST_IP with your actual server IP.

On your first visit, you’ll be asked to set up an admin account and password.

To know more about KodBox, please visit the kodbox official page.