diff --git a/.wordlist.txt b/.wordlist.txt index 71460136..2b8f6bfc 100644 --- a/.wordlist.txt +++ b/.wordlist.txt @@ -841,7 +841,6 @@ UDFs UI unaliased undirected -UNIQIE unnormalized unparseable unserializable diff --git a/operations/docker.md b/operations/docker.md index 6411f604..8f3621c9 100644 --- a/operations/docker.md +++ b/operations/docker.md @@ -496,7 +496,7 @@ docker-compose config q3="How do I configure FalkorDB module parameters like thread count?" a3="Use the `FALKORDB_ARGS` environment variable: `-e FALKORDB_ARGS='THREAD_COUNT 8 CACHE_SIZE 50 TIMEOUT_MAX 60000'`. See the Configuration page for all available parameters." q4="Why is my data lost when I restart the container?" - a4="You need to mount a persistent volume. Use `-v falkordb_data:/var/lib/falkordb/data` to attach a Docker volume to the default data directory, and enable AOF for durability." + a4="You need to mount a persistent volume. Use `-v falkordb_data:/data` to attach a Docker volume to the default data directory, and enable AOF for durability." q5="How do I check if FalkorDB is healthy in Docker Compose?" a5="Add a healthcheck using `redis-cli ping`: `test: ['CMD', 'redis-cli', 'ping']`. With authentication, include `-a yourpassword` in the test command." %} diff --git a/operations/index.md b/operations/index.md index ba4d6606..19e19ce5 100644 --- a/operations/index.md +++ b/operations/index.md @@ -66,7 +66,7 @@ Build custom FalkorDB Docker containers from source with platform-specific examp q1="What Docker image should I use for production?" a1="Use `falkordb/falkordb-server` for production deployments. It excludes the browser UI, making it lighter and more efficient. Use `falkordb/falkordb` for development when you need the built-in browser." q2="How do I ensure my data survives container restarts?" - a2="Mount a persistent volume to `/var/lib/falkordb/data` using Docker volumes or bind mounts, and enable AOF persistence. See the [Data Durability](/operations/durability) guide for full details." + a2="Mount a persistent volume to `/data` using Docker volumes or bind mounts, and enable AOF persistence. See the [Data Durability](/operations/durability) guide for full details." q3="Can FalkorDB scale horizontally?" a3="Yes. FalkorDB supports clustering via Redis Cluster, distributing graphs across multiple shards using hash slots. Each graph resides on one shard. See [Setting Up a Cluster](/operations/cluster) for setup instructions." q4="What is the easiest way to deploy FalkorDB to the cloud?"