Run FalkorDB with browser for local development

Run FalkorDB container with both database and browser UI for local development environments

falkordb Updated

File contents

Run FalkorDB with browser for local development

Expose both database and UI ports for local development with FalkorDB.

Usage

Use Docker to run FalkorDB with both the database server and browser interface exposed.

Example

docker run -p 6379:6379 -p 3000:3000 -it --rm falkordb/falkordb:latest

Notes

  • Port 6379 exposes the FalkorDB/Redis database server
  • Port 3000 exposes the FalkorDB browser UI
  • The -it flag allows interactive terminal access
  • The --rm flag removes the container when stopped
  • This is the recommended setup for local development
  • Access the browser at http://localhost:3000

falkordb/skills/tree/main/operations-skills/run-with-browser-for-dev commit 0dea53d2ab

Frequently asked questions

npx skillmds@latest add falkordb/run-falkordb-with-browser-for-local-development