From dbb2c895393fbce6b74fd51e16078a83141bed8f Mon Sep 17 00:00:00 2001 From: liuliu Date: Fri, 17 Mar 2023 17:30:19 +0800 Subject: [PATCH] fix: docker-compose up command 1. docker compose -> docker-compose --- .../redis/getting-started-with-redis-and-openai.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vector_databases/redis/getting-started-with-redis-and-openai.ipynb b/examples/vector_databases/redis/getting-started-with-redis-and-openai.ipynb index b4781ea..f96e061 100644 --- a/examples/vector_databases/redis/getting-started-with-redis-and-openai.ipynb +++ b/examples/vector_databases/redis/getting-started-with-redis-and-openai.ipynb @@ -52,7 +52,7 @@ "To keep this example simple, we will use the Redis Stack docker container which we can start as follows\n", "\n", "```bash\n", - "$ docker compose up -d\n", + "$ docker-compose up -d\n", "```\n", "\n", "This also includes the [RedisInsight](https://redis.com/redis-enterprise/redis-insight/) GUI for managing your Redis database which you can view at [http://localhost:8001](http://localhost:8001) once you start the docker container.\n",