From a67933975ff7cd074525aca10dff962fd1a1baa5 Mon Sep 17 00:00:00 2001 From: Stefan Petrescu <60047427+spetrescu@users.noreply.github.com> Date: Mon, 18 Sep 2023 11:09:54 +0200 Subject: [PATCH] Replace `latest-cpu-x64-bionic` with `latest` as former does not exist. --- docs/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro.md b/docs/intro.md index 4109ffcd..94766573 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -124,7 +124,7 @@ Backend libraries are dynamically loaded as needed, but can also be loaded durin The easiest way to get a standalone Redis server with RedisAI bootstrapped locally is to use the official RedisAI Docker container image (to run on cpu in x64 machine with ubuntu 18 in following example): ``` -docker run -d --name redisai -p 6379:6379 redislabs/redisai:latest-cpu-x64-bionic +docker run -d --name redisai -p 6379:6379 redislabs/redisai:latest ``` ??? info "Further reference"