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

docs: chain windows docker commands for single enter run

parent c613eff3
No related branches found
No related tags found
No related merge requests found
......@@ -55,9 +55,9 @@ mintplexlabs/anythingllm:master
<td>
```powershell
$env:STORAGE_LOCATION="$HOME\Documents\anythingllm";
If(!(Test-Path $env:STORAGE_LOCATION)) {New-Item $env:STORAGE_LOCATION -ItemType Directory};
If(!(Test-Path "$env:STORAGE_LOCATION\.env")) {New-Item "$env:STORAGE_LOCATION\.env"};
$env:STORAGE_LOCATION="$HOME\Documents\anythingllm"; `
If(!(Test-Path $env:STORAGE_LOCATION)) {New-Item $env:STORAGE_LOCATION -ItemType Directory}; `
If(!(Test-Path "$env:STORAGE_LOCATION\.env")) {New-Item "$env:STORAGE_LOCATION\.env"}; `
docker run -d -p 3001:3001 `
--cap-add SYS_ADMIN `
-v "$env:STORAGE_LOCATION`:/app/server/storage" `
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment