# Run server-only for production-style usage

> Run FalkorDB server-only container without browser UI for lean production deployments

- Skill: `falkordb/run-server-only-for-production-style-usage` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/run-server-only-for-production-style-usage`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/run-server-only-for-production-style-usage/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-server-only-for-production-style-usage

---


# Run server-only for production-style usage

Use the server-only image for lean deployments without the browser interface.

## Usage

Use the `falkordb-server` image when you only need the database server without the UI.

## Example

```bash
docker run -p 6379:6379 -it --rm falkordb/falkordb-server:latest
```

## Notes

- The server-only image is lighter and more suitable for production
- Only port 6379 (database) is exposed
- No browser UI is included in this image
- Reduces container size and attack surface
- Recommended for production and automated deployments
- Can be accessed via any Redis client or FalkorDB SDK

