Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: configure max parallel builds for docker compose #1772

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ _Compile Rivet from scratch and start a full cluster._
Build & start the cluster with:

```yaml
docker compose -f docker/dev-full/docker-compose.yml up -d --build
docker compose --parallel=1 -f docker/dev-full/docker-compose.yml up -d --build
```

Then visit http://localhost:8080 in your browser.
Expand Down
4 changes: 2 additions & 2 deletions site/src/content/docs/self-hosting/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The following ports need to be open before running Rivet:
Start the cluster with:

```bash
docker compose -f docker/dev-full/docker-compose.yml up -d --build
docker compose --parallel=1 -f docker/dev-full/docker-compose.yml up -d --build
```

This will start the cluster in detached mode. Once complete, visit the dashboard at
Expand Down Expand Up @@ -68,7 +68,7 @@ docker compose -f docker/dev-full/docker-compose.yml down -v -t 0
To rebuild all services, run:

```bash
docker compose -f docker/dev-full/docker-compose.yml up -d --build
docker compose --parallel=1 -f docker/dev-full/docker-compose.yml up -d --build
```

To rebuild just the server, run:
Expand Down
Loading