Skip to content

Commit 652cc4e

Browse files
committed
Website/frontend: mention it is currently being fixed
1 parent cea13f5 commit 652cc4e

File tree

3 files changed

+56
-6
lines changed

3 files changed

+56
-6
lines changed

website/docs/developers/docker-images.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,17 @@ You can find available tags at:
101101
- [o1labs/mina-rust on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust/tags)
102102
- [o1labs/mina-rust-frontend on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust-frontend/tags)
103103

104+
<!-- prettier-ignore-start -->
105+
106+
:::info Frontend Status
107+
108+
The frontend dashboard Docker image is available but currently being updated.
109+
Full functionality will be restored in a future release.
110+
111+
:::
112+
113+
<!-- prettier-ignore-stop -->
114+
104115
## Quick Start with Docker Compose
105116

106117
The easiest way to get started is using the provided docker compose
@@ -114,7 +125,7 @@ cd mina-rust
114125
# Start node and frontend
115126
docker compose up -d
116127

117-
# Access the frontend at http://localhost:8070
128+
# Access the frontend at http://localhost:8070 (currently being fixed)
118129
```
119130

120131
## Local Development

website/docs/node-operators/alpha-testing.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,22 @@ Ensure you have **Docker** installed:
4646

4747
4. **Access the Dashboard**: Open `http://localhost:8070` in your browser.
4848

49-
The dashboard will show the syncing process in real time.
50-
<img width="1417" alt="image" src="https://github.com/user-attachments/assets/d9a5f5b3-522f-479b-9829-37402c63bb98" />
49+
<!-- prettier-ignore-start -->
5150

52-
> **1. Connecting to Peers:** The node connects to peers. You’ll see the
51+
:::caution Frontend Status
52+
53+
The dashboard is currently being updated and may not display correctly in
54+
v0.17.0. Use the logs to monitor syncing:
55+
56+
```bash
57+
docker compose logs -f
58+
```
59+
60+
:::
61+
62+
<!-- prettier-ignore-stop -->
63+
64+
> **1. Connecting to Peers:** The node connects to peers. You'll see the
5365
> number of connected, connecting, and disconnected peers grow.
5466
>
5567
> **2. Fetching Ledgers:** The node downloads key data: Staking ledger, Next

website/docs/node-operators/docker-usage.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,18 @@ You can find available tags at:
9191
- [o1labs/mina-rust on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust/tags)
9292
- [o1labs/mina-rust-frontend on Docker Hub](https://hub.docker.com/r/o1labs/mina-rust-frontend/tags)
9393

94+
<!-- prettier-ignore-start -->
95+
96+
:::note Frontend Dashboard
97+
98+
The frontend dashboard is currently being updated and will be fully functional
99+
in a future release. The Docker image is available but may not work as expected
100+
in v0.17.0.
101+
102+
:::
103+
104+
<!-- prettier-ignore-stop -->
105+
94106
## Architecture Support
95107

96108
All Docker images are built natively for multiple architectures to ensure
@@ -137,13 +149,27 @@ docker run -p 8302:8302 o1labs/mina-rust:latest
137149
# Run node and web dashboard together
138150
docker run -d --name mina-node -p 8302:8302 o1labs/mina-rust:latest \
139151
node --network devnet
152+
# Frontend (currently being fixed, may not work as expected)
140153
docker run -d --name mina-frontend -p 8070:8070 o1labs/mina-rust-frontend:latest
141154
```
142155

143156
### Using Docker Compose (Recommended)
144157

145158
Docker Compose provides the easiest way to run both the Mina node and frontend
146-
dashboard together:
159+
dashboard together.
160+
161+
<!-- prettier-ignore-start -->
162+
163+
:::caution Frontend Status
164+
165+
The frontend dashboard is included in the docker-compose setup but is currently
166+
being updated. It may not function correctly in v0.17.0 and will be fully
167+
operational in a future release.
168+
169+
:::
170+
171+
<!-- prettier-ignore-stop -->
172+
147173

148174
```bash
149175
# Clone the repository to get the docker compose configuration
@@ -178,7 +204,8 @@ MINA_LIBP2P_PORT=9302 MINA_LIBP2P_EXTERNAL_IP=203.0.113.1 docker compose up -d
178204
#### What's Included
179205

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

0 commit comments

Comments
 (0)