Skip to content

Releases: MertJSX/folderhost

Release v26.2.2

28 Feb 18:10
6fc960a

Choose a tag to compare

🚀 Folderhost Release v26.2.2

📅 Release Date: 2026-02-28 18:03:44 UTC

📋 What's New

image

Added

  • File Viewer: View PDFs, videos, images and audio files directly in the File Explorer.
  • Image Viewer: This is a feature included in File Viewer and now you can view the details of a picture. You can zoom in, zoom out, rotate etc.
  • Security: Now if someone steals your session token and tries to login from another browser or if he uses another ip address to login your account with the stolen token he will fail and the stolen token will be deleted from the server's cache.

Changed

  • Services Shutdown: Services now stop faster and can be forced using CTRL+C in server-side terminal.

Fixed

  • CodeEditor: Editor now properly waits for WebSocket connection before allowing edits.
  • Services: Resolved mutex deadlock that could freeze the services panel when accessed by unauthorized users.

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v26.2.2 Docker image

🐋 Docker Usage

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

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v26.2.2/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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.2.2

⚙️ 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.

Release v26.2.1

25 Feb 19:53

Choose a tag to compare

🚀 Folderhost Release v26.2.1

📅 Release Date: 2026-02-25 19:48:03 UTC

📋 What's New

Added

  • Service Logs: Now you can follow user activities related to services.

Changed

  • Optimized Build Size: Binary size has reduced:
    • Linux: ~23 MB -> ~17 MB (26% smaller)
    • Windows: ~37 MB -> ~17.3 MB (53% smaller)

Fixed

  • Upload page: Fixed "Uploading..." text after trying to upload without a selected file. I didn't expect that someone would click the upload button before selecting a file to upload, but I saw my friend doing that and realised that I needed to fix that tiny issue.

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v26.2.1 Docker image

🐋 Docker Usage

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

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v26.2.1/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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.2.1

⚙️ 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.

Release v26.2.0

22 Feb 14:07

Choose a tag to compare

🚀 Folderhost Release v26.2.0

📅 Release Date: 2026-02-22 14:00:02 UTC

📋 What's New

Added

  • Services (BETA):
    With this update you can create your own services. For example: Minecraft Server, Web Server etc. Features are:
    • Special configurations for services.
    • Added functions like auto_start and auto_restart.
    • Real-time terminal with WebSocket for your service.
    • Read logs and send commands to your service using web interface.
    • User permissions for services (start, stop, read_logs and execute_commands).
    • Service RAM limits.
    • Windows and Linux support.
  • File Explorer: Another button to upload your files on current directory.

Changed

  • Module name: github.com/MertJSX/folder-host-go -> github.com/MertJSX/folderhost

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v26.2.0 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v26.2.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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v26.2.0/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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.2.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.

Release v25.12.5

19 Dec 21:22

Choose a tag to compare

🚀 Folderhost Release v25.12.5

📅 Release Date: 2025-12-19 21:15:47 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.12.5 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.12.5

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.12.5/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.12.5

⚙️ 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.

Full Changelog: v25.12.4...v25.12.5

Release v25.12.4

15 Dec 17:00

Choose a tag to compare

🚀 Folderhost Release v25.12.4

📅 Release Date: 2025-12-15 16:54:24 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.12.4 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.12.4

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.12.4/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.12.4

⚙️ 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.

Full Changelog: v25.12.3...v25.12.4

Release v25.12.3

14 Dec 18:45

Choose a tag to compare

🚀 Folderhost Release v25.12.3

📅 Release Date: 2025-12-14 18:40:00 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.12.3 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.12.3

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.12.3/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.12.3

⚙️ 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.

Full Changelog: v25.12.2...v25.12.3

Release v25.12.2

10 Dec 20:41

Choose a tag to compare

🚀 Folderhost Release v25.12.2

📅 Release Date: 2025-12-10 20:37:05 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.12.2 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.12.2

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.12.2/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.12.2

⚙️ 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.

Full Changelog: v25.12.1...v25.12.2

Release v25.12.1

08 Dec 15:59

Choose a tag to compare

🚀 Folderhost Release v25.12.1

📅 Release Date: 2025-12-08 15:52:12 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.12.1 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.12.1

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.12.1/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.12.1

⚙️ 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.

Full Changelog: v25.12.0...v25.12.1

Release v25.12.0

04 Dec 18:05

Choose a tag to compare

🚀 Folderhost Release v25.12.0

📅 Release Date: 2025-12-04 18:00:19 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.12.0 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.12.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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.12.0/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.12.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.

Full Changelog: v25.11.13...v25.12.0

Release v25.11.13

26 Nov 19:08

Choose a tag to compare

🚀 Folderhost Release v25.11.13

📅 Release Date: 2025-11-26 19:02:55 UTC

📦 Downloads

Platform Download Description
🐧 Linux folderhost-linux-amd64.zip Linux x86_64 binary
🪟 Windows folderhost-windows-amd64.zip Windows x86_64 executable
🐋 Docker docker pull mertjsx/folderhost:v25.11.13 Docker image

🐋 Docker Usage

# Pull the image
docker pull mertjsx/folderhost:v25.11.13

# 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

# Download and extract
wget https://github.com/MertJSX/folderhost/releases/download/v25.11.13/folderhost-linux-amd64.zip
unzip folderhost-linux-amd64.zip
chmod +x folderhost

# Run
./folderhost

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:v25.11.13

⚙️ 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.

Full Changelog: v25.11.12...v25.11.13