services: tinyfilemanager: image: pritunl/tinyfilemanager:latest container_name: tinyfilemanager restart: unless-stopped ports: - "127.0.0.1:8080:80" volumes: - ./data:/var/www/html environment: - USERNAME=admin - PASSWORD=admin123
<?php // Custom configuration $auth_users = array( 'admin' => '$2y$10$YourHashedPasswordHere', // Use password_hash() 'guest' => '$2y$10$GuestHashedPassword' );
# Optional: Mount a custom config.php if you need to override default settings # - ./config.php:/var/www/html/config.php Use code with caution. Copied to clipboard 3. Key Configuration Options
docker compose up -d
TinyFileManager Docker Compose is a highly efficient way to deploy a lightweight, web-based file management system without managing individual PHP dependencies. It provides a full-featured interface for managing server files through a single containerized environment. Core Benefits Minimalist & Lightweight:
If you’ve ever needed a quick, lightweight way to manage server files through a web browser without the bloat of a full-blown OS, TinyFileManager is your answer. It’s a single-file PHP application that packs a punch with features like a built-in code editor, multi-user support, and direct file uploads.
services: tinyfilemanager: image: pritunl/tinyfilemanager:latest container_name: tinyfilemanager restart: unless-stopped ports: - "127.0.0.1:8080:80" volumes: - ./data:/var/www/html environment: - USERNAME=admin - PASSWORD=admin123
<?php // Custom configuration $auth_users = array( 'admin' => '$2y$10$YourHashedPasswordHere', // Use password_hash() 'guest' => '$2y$10$GuestHashedPassword' ); tinyfilemanager docker compose
# Optional: Mount a custom config.php if you need to override default settings # - ./config.php:/var/www/html/config.php Use code with caution. Copied to clipboard 3. Key Configuration Options It provides a full-featured interface for managing server
docker compose up -d
TinyFileManager Docker Compose is a highly efficient way to deploy a lightweight, web-based file management system without managing individual PHP dependencies. It provides a full-featured interface for managing server files through a single containerized environment. Core Benefits Minimalist & Lightweight: and direct file uploads.
If you’ve ever needed a quick, lightweight way to manage server files through a web browser without the bloat of a full-blown OS, TinyFileManager is your answer. It’s a single-file PHP application that packs a punch with features like a built-in code editor, multi-user support, and direct file uploads.