# Run FalkorDB with browser for local development

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

- Skill: `falkordb/run-falkordb-with-browser-for-local-development` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/run-falkordb-with-browser-for-local-development`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/run-falkordb-with-browser-for-local-development/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: falkordb (https://skillmd.com/u/falkordb)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/falkordb/run-falkordb-with-browser-for-local-development

---


# 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

```bash
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

