Skip to main content
Version: v3 (latest✅)

Search & Sorting

image

Click on the column header to sort by that column. Click again to reverse the sort order.

Click on the search icon to open the search input field and choose an engine to search the current folder and all descendants of the current folder.

Engines

Basic string-matching search engine. Enabled by default.

More powerful search engine for advanced users. It is simple to use and faster than the regex engine. Enabled by default.

PatternDescription
*Matches zero or more characters.
?Matches exactly one character (any character).
[...]Matches one character from a group of characters. If the first character is !, it matches any character not in the group.
\Escapes the following character.
info

Expansion {a,b,c} is not available because it is not supported by the underlying base image (Alpine Linux). Globstar ** is not supported by PHP natively.

Learn more

This engine is the most powerful but slower than the glob engine. It is useful for complex searches. Disabled by default.

Learn more

⚙️ Configuration

VariableDefaultValuesDetails
SEARCHtruetrue
false
Enables or disables the search functionalityadded in v3.7
SEARCH_ENGINEs,gs
g
r
s=simple, g=glob, r=regex. Multiple values seperated using commas.added in v3.8
SEARCH_MAX_DEPTH25integer
Maximum recursive search depth (simple and regex engine only)added in v3.7
SEARCH_MAX_RESULTS100integer
Maximum number of results in a single requestadded in v3.7
REVERSE_SORTfalsetrue
false
By default files and folders are sorted by name using natural sort.added in v1.0
How to set configuration options
Set the environment variables when starting the container.
Use docker run...
  • ...with -e SEARCH=true
  • ...with --env-file .env and place SEARCH=true in the file
See installation page for more details.