Skip to content
Merged
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
1 change: 0 additions & 1 deletion ledger/src/proofs/circuit_blobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ pub async fn fetch(filename: &impl AsRef<Path>) -> std::io::Result<Vec<u8>> {
option_env!("CIRCUIT_BLOBS_HTTP_PREFIX").unwrap_or("/assets/webnode/circuit-blobs");
let url = format!("{prefix}/{}", filename.as_ref().to_str().unwrap());
mina_core::http::get_bytes(&url).await
// http::get_bytes(&git_release_url(filename)).await
}

#[cfg(target_family = "wasm")]
Expand Down
14 changes: 0 additions & 14 deletions website/docs/node-operators/block-producer.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,20 +145,6 @@ Ensure Docker and Docker Compose are installed on your system -
Visit [http://localhost:8070](http://localhost:8070) to monitor sync and
block production.

<!-- prettier-ignore-start -->

:::note Frontend Status

The dashboard is currently being updated and may not work correctly in
v0.17.0. As an alternative, monitor your node using logs:

```bash
docker compose logs -f
```

:::
<!-- prettier-ignore-stop -->

## Using Make Command

As an alternative to Docker Compose, you can run the block producer directly
Expand Down
29 changes: 2 additions & 27 deletions website/docs/node-operators/docker-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,6 @@ You can find available tags at:
- [o1labs/mina-rust on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust/tags)
- [o1labs/mina-rust-frontend on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust-frontend/tags)

<!-- prettier-ignore-start -->

:::note Frontend Dashboard

The frontend dashboard is currently being updated and will be fully functional
in a future release. The Docker image is available but may not work as expected
in v0.17.0.

:::

<!-- prettier-ignore-stop -->

## Architecture Support

All Docker images are built natively for multiple architectures to ensure
Expand Down Expand Up @@ -149,7 +137,7 @@ docker run -p 8302:8302 o1labs/mina-rust:latest
# Run node and web dashboard together
docker run -d --name mina-rust-node -p 8302:8302 o1labs/mina-rust:latest \
node --network devnet
# Frontend (currently being fixed, may not work as expected)
# Frontend
docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest
```

Expand All @@ -158,18 +146,6 @@ docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest
Docker Compose provides the easiest way to run both the Mina node and frontend
dashboard together.

<!-- prettier-ignore-start -->

:::caution Frontend Status

The frontend dashboard is included in the docker-compose setup but is currently
being updated. It may not function correctly in v0.17.0 and will be fully
operational in a future release.

:::

<!-- prettier-ignore-stop -->

#### Quick Start with Release Version

For each release, you can directly download the docker-compose.yml file:
Expand Down Expand Up @@ -242,8 +218,7 @@ MINA_LIBP2P_PORT=9302 MINA_LIBP2P_EXTERNAL_IP=203.0.113.1 docker compose up -d
#### What's Included

- **mina-rust-node**: The core Mina Rust node running on devnet
- **frontend**: Web dashboard accessible at http://localhost:8070 (currently
being fixed)
- **frontend**: Web dashboard accessible at http://localhost:8070
- **Persistent storage**: Node data stored in `./mina-workdir` directory
- **Automatic networking**: Services can communicate with each other

Expand Down
Loading