File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,14 @@ Use the Dockerized version of AnythingLLM for a much faster and complete startup
31
31
32
32
` docker pull mintplexlabs/anythingllm:master `
33
33
34
+ <table >
35
+ <tr >
36
+ <th >Linux/MacOs</th >
37
+ <th >Windows Powershell</th >
38
+ </tr >
39
+ <tr >
40
+ <td >
41
+
34
42
``` shell
35
43
export STORAGE_LOCATION=$HOME /anythingllm && \
36
44
mkdir -p $STORAGE_LOCATION && \
@@ -43,6 +51,25 @@ docker run -d -p 3001:3001 \
43
51
mintplexlabs/anythingllm:master
44
52
```
45
53
54
+ </td >
55
+ <td >
56
+
57
+ ``` powershell
58
+ $env:STORAGE_LOCATION="$HOME\Documents\anythingllm";
59
+ If(!(Test-Path $env:STORAGE_LOCATION)) {New-Item $env:STORAGE_LOCATION -ItemType Directory};
60
+ If(!(Test-Path "$env:STORAGE_LOCATION\.env")) {New-Item "$env:STORAGE_LOCATION\.env"};
61
+ docker run -d -p 3001:3001 `
62
+ --cap-add SYS_ADMIN `
63
+ -v "$env:STORAGE_LOCATION`:/app/server/storage" `
64
+ -v "$env:STORAGE_LOCATION\.env:/app/server/.env" `
65
+ -e STORAGE_DIR="/app/server/storage" `
66
+ mintplexlabs/anythingllm:master;
67
+ ```
68
+
69
+ </td >
70
+ </tr >
71
+ </table >
72
+
46
73
Go to ` http://localhost:3001 ` and you are now using AnythingLLM! All your data and progress will persist between
47
74
container rebuilds or pulls from Docker Hub.
48
75
You can’t perform that action at this time.
0 commit comments