Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Files

Latest commit

cccee31 · Apr 16, 2025

History

History

filebrowser

README.md

display_name description icon maintainer_github verified tags
File Browser
A file browser for your workspace
../.icons/filebrowser.svg
coder
true
helper
filebrowser

File Browser

A file browser for your workspace.

module "filebrowser" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/modules/filebrowser/coder"
  version  = "1.0.31"
  agent_id = coder_agent.example.id
}

Filebrowsing Example

Examples

Serve a specific directory

module "filebrowser" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/modules/filebrowser/coder"
  version  = "1.0.31"
  agent_id = coder_agent.example.id
  folder   = "/home/coder/project"
}

Specify location of filebrowser.db

module "filebrowser" {
  count         = data.coder_workspace.me.start_count
  source        = "registry.coder.com/modules/filebrowser/coder"
  version       = "1.0.31"
  agent_id      = coder_agent.example.id
  database_path = ".config/filebrowser.db"
}

Serve from the same domain (no subdomain)

module "filebrowser" {
  count      = data.coder_workspace.me.start_count
  source     = "registry.coder.com/modules/filebrowser/coder"
  version    = "1.0.31"
  agent_id   = coder_agent.example.id
  agent_name = "main"
  subdomain  = false
}