docs: update build guideline (#2434)

Co-authored-by: Himself65 <himself65@outlook.com>
This commit is contained in:
fourdim
2023-05-22 20:18:43 +08:00
committed by GitHub
parent fd35d3427e
commit 0a49258ddd
6 changed files with 13 additions and 7 deletions

View File

@@ -31,13 +31,13 @@ nvm use 18
## Setup Environment
This setup requires modern yarn (currently `3.5.0`), run this if your yarn version is `1.x`
This setup requires modern yarn (currently `3.x`), run this if your yarn version is `1.x`
Reference: [Yarn installation doc](https://yarnpkg.com/getting-started/install)
```sh
corepack enable
corepack prepare yarn@3.5.0 --activate
corepack prepare yarn@stable --activate
```
```sh
@@ -52,7 +52,7 @@ yarn install
```shell
# Run OctoBase container in background
docker pull ghcr.io/toeverything/cloud-self-hosted:nightly-latest
docker run --env=SIGN_KEY=test123 --env=RUST_LOG=debug --env=JWST_DEV=1 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/app -p 3000:3000 --runtime=runc -d ghcr.io/toeverything/cloud-self-hosted:nightly-latest
docker run --env=SIGN_KEY=test123 --env=RUST_LOG=debug --env=JWST_DEV=1 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/app -p 127.0.0.1:3000:3000 --runtime=runc -d ghcr.io/toeverything/cloud-self-hosted:nightly-latest
```
```shell