Skip to main content
Version: v4 (latest✅)

Date & Time

Controls how file and folder timestamps are displayed in the file list.

ValueDescription
localFormat based on user's localized date format (e.g. 12.1.2024, 04:36:30 in German)
utcUTC time (e.g. 2021-08-01 12:32:55 UTC)
relative (Default)Relative time based on user's localized date format (e.g. 2 days ago in English)

Times are displayed in the user's local timezone.

When using the relative format you can override the language used for phrases like “2 days ago” by setting DATE_FORMAT_RELATIVE_LANG (for example de). By default it uses the browser/user locale.

⚙️ Configuration

VariableDefaultValuesDetails
DATE_FORMATrelativelocal
utc
relative
added in v2.0
DATE_FORMAT_RELATIVE_LANG<empty>en
de
...
added in v2.0
How to set configuration options
Set the environment variables when starting the container.
Use docker run...
  • ...with -e DATE_FORMAT=relative
  • ...with --env-file .env and place DATE_FORMAT=relative in the file
See installation page for more details.