# Run the browser separately against a server

> Run FalkorDB browser and server as separate containers connected via FALKORDB_URL

- Skill: `falkordb/run-the-browser-separately-against-a-server` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/run-the-browser-separately-against-a-server`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/run-the-browser-separately-against-a-server/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-the-browser-separately-against-a-server

---


# Run the browser separately against a server

Use `FALKORDB_URL` to point the browser container to a separate server instance.

## Usage

Run the server and browser as separate services, using environment variables to configure the connection.

## Example

```yaml
services:
  falkordb-server:
    image: falkordb/falkordb-server:latest
    ports:
      - "6379:6379"
  falkordb-browser:
    image: falkordb/falkordb-browser:latest
    ports:
      - "3000:3000"
    environment:
      - FALKORDB_URL=redis://falkordb-server:6379
      - FALKORDB_PASSWORD=falkordb
```

## Notes

- Separating server and browser allows independent scaling and management
- `FALKORDB_URL` specifies the Redis connection URL for the browser
- `FALKORDB_PASSWORD` provides the authentication password if set
- The browser can connect to any FalkorDB server, local or remote
- Use service names (e.g., `falkordb-server`) for inter-container communication
- This setup is closer to production architecture patterns

