Update run command to include bind mounts for persistent folders (db and cache)
This commit is contained in:
parent
e6d613ad73
commit
63e41cf1ec
|
@ -94,7 +94,12 @@ There are 2 flavors of Fasten:
|
||||||
Run the following commands to download and start the Fasten docker container.
|
Run the following commands to download and start the Fasten docker container.
|
||||||
```
|
```
|
||||||
docker pull ghcr.io/fastenhealth/fasten-onprem:main
|
docker pull ghcr.io/fastenhealth/fasten-onprem:main
|
||||||
docker run --rm -p 9090:8080 ghcr.io/fastenhealth/fasten-onprem:main
|
|
||||||
|
docker run --rm \
|
||||||
|
-p 9090:8080 \
|
||||||
|
-v `pwd`/db:/opt/fasten/db \
|
||||||
|
-v `pwd`/cache:/opt/fasten/cache \
|
||||||
|
ghcr.io/fastenhealth/fasten-onprem:main
|
||||||
```
|
```
|
||||||
|
|
||||||
Next, open a browser to `http://localhost:9090`
|
Next, open a browser to `http://localhost:9090`
|
||||||
|
|
Loading…
Reference in New Issue