From 3b85c196e9a5e00d89423408e8fe64a16780850a Mon Sep 17 00:00:00 2001
From: timothycarambat <rambat1010@gmail.com>
Date: Sat, 30 Sep 2023 15:10:27 -0700
Subject: [PATCH] update docker instructions and dockerfile container name

---
 docker/HOW_TO_USE_DOCKER.md | 2 +-
 docker/docker-compose.yml   | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/docker/HOW_TO_USE_DOCKER.md b/docker/HOW_TO_USE_DOCKER.md
index 7a47811f0..12c94e72c 100644
--- a/docker/HOW_TO_USE_DOCKER.md
+++ b/docker/HOW_TO_USE_DOCKER.md
@@ -7,8 +7,8 @@ Use the Dockerized version of AnythingLLM for a much faster and complete startup
 
 ## How to install
 - `git clone` this repo and `cd anything-llm` to get to the root directory.
+- `yarn setup`
 - `cd docker/`
-- `cp .env.example .env` to create the `.env` file.
 - Edit `.env` file and update the variables
 - `docker-compose up -d --build` to build the image - this will take a few moments.
 
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
index df323cc2d..d9972426c 100644
--- a/docker/docker-compose.yml
+++ b/docker/docker-compose.yml
@@ -1,5 +1,7 @@
 version: '3.9'
 
+name: anythingllm
+
 networks:
   anything-llm:
     driver: bridge