Skip to content
Snippets Groups Projects
Commit c6f0e4cd authored by timothycarambat's avatar timothycarambat
Browse files

update docker instructions

parent 17dfeae0
No related branches found
No related tags found
No related merge requests found
...@@ -79,8 +79,11 @@ This monorepo consists of three main sections: ...@@ -79,8 +79,11 @@ This monorepo consists of three main sections:
*AnythingLLM by default uses a built-in vector db called LanceDB. *AnythingLLM by default uses a built-in vector db called LanceDB.
## How to get started (Docker - simple setup) ## How to get started (Docker - simple setup)
[Get up and running in minutes with Docker](./docker/HOW_TO_USE_DOCKER.md) `docker pull mintplexlabs/anythingllm:master`
`docker run -d -p 3001:3001 mintplexlabs/anythingllm:master`
Go to `http://localhost:3001` and you are now using AnythingLLm!
[More about running AnythingLLM with Docker](./docker/HOW_TO_USE_DOCKER.md)
### How to get started (Development environment) ### How to get started (Development environment)
- `yarn setup` from the project root directory. - `yarn setup` from the project root directory.
......
...@@ -5,7 +5,13 @@ Use the Dockerized version of AnythingLLM for a much faster and complete startup ...@@ -5,7 +5,13 @@ Use the Dockerized version of AnythingLLM for a much faster and complete startup
## Requirements ## Requirements
- Install [Docker](https://www.docker.com/) on your computer or machine. - Install [Docker](https://www.docker.com/) on your computer or machine.
## How to install & run locally ## Pull from Docker
`docker pull mintplexlabs/anythingllm:master`
`docker run -d -p 3001:3001 mintplexlabs/anythingllm:master`
Go to `http://localhost:3001` and you are now using AnythingLLm!
## Build locally from source
- `git clone` this repo and `cd anything-llm` to get to the root directory. - `git clone` this repo and `cd anything-llm` to get to the root directory.
- `touch server/storage/anythingllm.db` to create empty SQLite DB file. - `touch server/storage/anythingllm.db` to create empty SQLite DB file.
- `cd docker/` - `cd docker/`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment