Skip to content

Release v26.8.0

Latest

Choose a tag to compare

@github-actions github-actions released this 15 Aug 14:11
· 3 commits to main since this release

FolderHost Release v26.8.0

Release Date: 2026-08-15 14:03:22 UTC

What's New

Added

  • Image Viewer: Added direct image viewer access from sidebar preview.
  • Permission Tooltips: Added tooltips to permission settings to explain what each permission does.
  • Sharing system: Now you can share files with your friends using share links. Without needing to set a password to access it. You can also set an expiration date for the share link or an access password for it. Admins can also view and remove everyones shared links.
image

Changed

  • Image Viewer: Set default mode to drag mode.

Security

  • Login tracking: Now FolderHost locally logs the IP addresses and User Agents of the logged in users to provide additional security.

Fixed

  • Docker versioning: Fixed issue where docker was not showing the correct version.
  • Database: Fixed possible deadlocks.
  • Login: Prevent browser autofill from breaking the dark mode input colors.
  • Recovery: Fixed icon bugs in file recovery.

Downloads

Platform Architecture Format Download
Linux x86_64 tar.gz folderhost-linux-amd64.tar.gz
Linux ARMv7 (32-bit) tar.gz folderhost-linux-armv7.tar.gz
Linux ARM64 tar.gz folderhost-linux-arm64.tar.gz
Windows x86_64 zip folderhost-windows-amd64.zip
macOS Intel tar.gz folderhost-macos-intel.tar.gz
macOS Apple Silicon (M1/M2/M3) tar.gz folderhost-macos-applesilicon.tar.gz
FreeBSD x86_64 tar.gz folderhost-freebsd-amd64.tar.gz
Docker Multi-arch image docker pull mertjsx/folderhost:v26.8.0

Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v26.8.0

# Or use latest
docker pull mertjsx/folderhost:latest

# Run with docker-compose
# Download docker-compose.prod.yml from repository
docker-compose -f docker-compose.prod.yml up -d

Important: The application will use port 5000 by default, but you can change this in config.yml and update the port mapping in docker-compose.prod.yml accordingly.

Quick Start

Linux (x86_64)

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v26.8.0/folderhost-linux-amd64.tar.gz
tar -xzf folderhost-linux-amd64.tar.gz
chmod +x folderhost-linux-amd64

# Run
./folderhost-linux-amd64

Windows

# Download, extract, and run
# Edit config.yml as needed
folderhost.exe # Or just double click

Docker

# Run container, you can access the files using docker volumes
docker run -d \
  --name folderhost-server \
  -p 5000:5000 \
  -v folderhost_data:/app \
  --restart unless-stopped \
  mertjsx/folderhost:v26.8.0

Manual Configuration

  1. Extract the downloaded archive (for binary installations)
  2. Run the application once to generate config.yml
  3. Edit config.yml to customize settings (especially the port if needed)
  4. For Docker: Update the port mapping in docker-compose.prod.yml if you changed the port in config.yml
  5. Restart the application

For issues and questions, please visit the GitHub Issues page.