This guide covers installing and troubleshooting Docker for Auto Claude's Memory Layer. The Memory Layer uses FalkorDB (a graph database) to provide persistent cross-session memory for AI agents.
Good news! If you're using the Desktop UI, it automatically detects Docker and FalkorDB status and offers one-click setup. This guide is for manual setup or troubleshooting.
- Quick Start
- What is Docker?
- Installing Docker Desktop
- Starting FalkorDB
- Verifying Your Setup
- Troubleshooting
- Advanced Configuration
- Uninstalling
If Docker Desktop is already installed and running:
# Start FalkorDB
docker run -d --name auto-claude-falkordb -p 6379:6379 falkordb/falkordb:latest
# Verify it's running
docker ps | grep falkordbDocker is a tool that runs applications in isolated "containers". Think of it as a lightweight virtual machine that:
- Keeps things contained - FalkorDB runs inside Docker without affecting your system
- Makes setup easy - One command to start, no complex installation
- Works everywhere - Same setup on Mac, Windows, and Linux
You don't need to understand Docker - just install Docker Desktop and Auto Claude handles the rest.
| Mac Type | Download Link |
|---|---|
| Apple Silicon (M1/M2/M3/M4) | Download for Apple Chip |
| Intel | Download for Intel Chip |
Which do I have? Click the Apple logo () β "About This Mac". Look for "Chip" - if it says Apple M1/M2/M3/M4, use Apple Silicon. If it says Intel, use Intel.
- Open the downloaded
.dmgfile - Drag the Docker icon to your Applications folder
- Open Docker from Applications (or Spotlight: β+Space, type "Docker")
- Click "Open" if you see a security warning
- Wait - Docker takes 1-2 minutes to start the first time
Look for the whale icon (π³) in your menu bar. When it stops animating, Docker is ready.
Open Terminal and run:
docker --version
# Expected: Docker version 24.x.x or higher- Windows 10 (version 2004 or higher) or Windows 11
- WSL 2 enabled (Docker will prompt you to install it)
Download Docker Desktop for Windows
- Run the downloaded installer
- Keep "Use WSL 2" checked (recommended)
- Follow the installation wizard with default settings
- Restart your computer when prompted
- After restart, Docker Desktop will start automatically
If Docker shows a WSL 2 warning:
- Open PowerShell as Administrator
- Run:
wsl --install - Restart your computer
- Open Docker Desktop again
Look for the whale icon (π³) in your system tray. When it stops animating, Docker is ready.
Open PowerShell or Command Prompt and run:
docker --version
# Expected: Docker version 24.x.x or higher# Update package index
sudo apt-get update
# Install prerequisites
sudo apt-get install ca-certificates curl gnupg
# Add Docker's official GPG key
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
# Add the repository
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
# Install Docker
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin
# Add your user to the docker group (to run without sudo)
sudo usermod -aG docker $USER
# Log out and back in, then verify
docker --version# Install Docker
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
# Start Docker
sudo systemctl start docker
sudo systemctl enable docker
# Add your user to the docker group
sudo usermod -aG docker $USERFrom the Auto Claude root directory:
# Start FalkorDB only (for Python library integration)
docker-compose up -d falkordb
# Or start both FalkorDB + Graphiti MCP server (for agent memory access)
docker-compose up -dThis uses the project's docker-compose.yml which is pre-configured.
docker run -d \
--name auto-claude-falkordb \
-p 6379:6379 \
--restart unless-stopped \
falkordb/falkordb:latestIf you're using the Auto Claude Desktop UI:
- Go to Project Settings β Memory Backend
- Enable "Use Graphiti"
- The UI will show Docker/FalkorDB status
- Click "Start" to launch FalkorDB automatically
The Graphiti MCP server allows Claude agents to directly search and add to the knowledge graph during builds. This is optional but recommended for the best memory experience.
- FalkorDB must be running
- OpenAI API key (for embeddings)
For CLI users - The API key is read from auto-claude/.env:
docker-compose up -dFor Frontend/UI users - Create a .env file in the project root:
# Copy the example file
cp .env.example .env
# Edit and add your OpenAI API key
nano .env # or use any text editor
# Start the services
docker-compose up -d# Check container status
docker ps | grep graphiti-mcp
# Check health endpoint
curl http://localhost:8000/health
# View logs if there are issues
docker logs auto-claude-graphiti-mcpIn Project Settings β Memory Backend:
- Enable "Enable Agent Memory Access"
- Set MCP URL to:
http://localhost:8000/mcp/
docker info
# Should show Docker system information without errorsdocker ps | grep falkordb
# Should show the running containerdocker exec auto-claude-falkordb redis-cli PING
# Expected response: PONGdocker logs auto-claude-falkordb| Problem | Solution |
|---|---|
| "docker: command not found" | Docker Desktop isn't installed or isn't in PATH. Reinstall Docker Desktop. |
| "Cannot connect to Docker daemon" | Docker Desktop isn't running. Open Docker Desktop and wait for it to start. |
| "permission denied" | On Linux, add your user to the docker group: sudo usermod -aG docker $USER then log out and back in. |
| Docker Desktop won't start | Try restarting your computer. On Mac, check System Preferences β Security for blocked apps. |
| "Docker Desktop requires macOS 12" | Update macOS in System Preferences β Software Update. |
| "WSL 2 installation incomplete" | Run wsl --install in PowerShell (as Admin) and restart. |
| Problem | Solution |
|---|---|
| Container won't start | Check if port 6379 is in use: lsof -i :6379 (Mac/Linux) or `netstat -ano |
| "port is already allocated" | Stop conflicting container: docker stop auto-claude-falkordb && docker rm auto-claude-falkordb |
| Connection refused | Verify container is running: docker ps. If not listed, start it again. |
| Container crashes immediately | Check logs: docker logs auto-claude-falkordb. May need more memory. |
| Problem | Solution |
|---|---|
| "OPENAI_API_KEY must be set" | Create .env file with your API key: echo "OPENAI_API_KEY=sk-your-key" > .env |
| "DATABASE_TYPE must be set" | Using old docker run command. Use docker-compose up -d instead. |
| Container keeps restarting | Check logs: docker logs auto-claude-graphiti-mcp. Usually missing API key. |
| Platform warning on Apple Silicon | This is normal - the image runs via Rosetta emulation. It may be slower but works. |
| Health check fails | Wait 30 seconds for startup. Check: curl http://localhost:8000/health |
| Problem | Solution |
|---|---|
| Docker using too much memory | Open Docker Desktop β Settings β Resources β Memory. Reduce to 2-4GB. |
| Docker using too much disk | Run docker system prune -a to clean unused images and containers. |
| Computer running slow | Quit Docker Desktop when not using Auto Claude. FalkorDB only needs to run during active sessions. |
| Problem | Solution |
|---|---|
| "network not found" | Run docker network create auto-claude-network or use docker-compose up |
| Can't connect from app | Ensure port 6379 is exposed. Check firewall isn't blocking localhost connections. |
If port 6379 is in use, change it:
# Using docker run
docker run -d --name auto-claude-falkordb -p 6381:6379 falkordb/falkordb:latestThen update Auto Claude settings to use port 6381.
To persist FalkorDB data between container restarts:
docker run -d \
--name auto-claude-falkordb \
-p 6379:6379 \
-v auto-claude-falkordb-data:/data \
--restart unless-stopped \
falkordb/falkordb:latestTo limit FalkorDB memory usage:
docker run -d \
--name auto-claude-falkordb \
-p 6379:6379 \
--memory=2g \
--restart unless-stopped \
falkordb/falkordb:latestIf running Docker on a different machine:
-
Expose the port on the server:
docker run -d -p 0.0.0.0:6379:6379 falkordb/falkordb:latest
-
Update Auto Claude settings:
- Set
GRAPHITI_FALKORDB_HOST=your-server-ip - Set
GRAPHITI_FALKORDB_PORT=6379
- Set
docker stop auto-claude-falkordb
docker rm auto-claude-falkordbdocker rmi falkordb/falkordb:latestdocker system prune -a --volumes- Mac: Drag Docker from Applications to Trash, then empty Trash
- Windows: Control Panel β Programs β Uninstall Docker Desktop
- Linux:
sudo apt-get remove docker-ce docker-ce-cli containerd.io
If you're still having issues:
- Check the Auto Claude GitHub Issues
- Search for your error message
- Create a new issue with:
- Your operating system and version
- Docker version (
docker --version) - Error message or logs
- Steps you've already tried