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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Dashboard, documenting all endpoints and specific data fields used by the
frontend ([#1566](https://github.com/o1-labs/mina-rust/issues/1566))

### Fixed

- **Docker Compose**: Fix frontend black screen issue by changing environment
from `compose` to `local` and exposing port 3000 for mina-node HTTP API
([#1649](https://github.com/o1-labs/mina-rust/pull/1649))

## [0.18.0] - 2025-11-04

### OCaml node
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ services:
volumes:
- ./mina-workdir:/root/.mina:rw
ports:
- "3000:3000"
- "${MINA_LIBP2P_PORT:-8302}:${MINA_LIBP2P_PORT:-8302}"
environment:
MINA_LIBP2P_EXTERNAL_IP: "${MINA_LIBP2P_EXTERNAL_IP:-}"
Expand All @@ -20,6 +21,6 @@ services:
frontend:
image: o1labs/mina-rust-frontend:${MINA_FRONTEND_TAG:-latest}
environment:
MINA_FRONTEND_ENVIRONMENT: compose
MINA_FRONTEND_ENVIRONMENT: local
ports:
- "8070:80"
Loading