Skip to content

Commit 6fc3f26

Browse files
authored
Merge pull request #1649 from o1-labs/1644-resolve-black-screen-on-frontend-within-the-docker-compose
Fix frontend black screen issue in docker-compose setup
2 parents 8291a44 + a4e81c1 commit 6fc3f26

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
Dashboard, documenting all endpoints and specific data fields used by the
1414
frontend ([#1566](https://github.com/o1-labs/mina-rust/issues/1566))
1515

16+
### Fixed
17+
18+
- **Docker Compose**: Fix frontend black screen issue by changing environment
19+
from `compose` to `local` and exposing port 3000 for mina-node HTTP API
20+
([#1649](https://github.com/o1-labs/mina-rust/pull/1649))
21+
1622
## [0.18.0] - 2025-11-04
1723

1824
### OCaml node

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ services:
1212
volumes:
1313
- ./mina-workdir:/root/.mina:rw
1414
ports:
15+
- "3000:3000"
1516
- "${MINA_LIBP2P_PORT:-8302}:${MINA_LIBP2P_PORT:-8302}"
1617
environment:
1718
MINA_LIBP2P_EXTERNAL_IP: "${MINA_LIBP2P_EXTERNAL_IP:-}"
@@ -20,6 +21,6 @@ services:
2021
frontend:
2122
image: o1labs/mina-rust-frontend:${MINA_FRONTEND_TAG:-latest}
2223
environment:
23-
MINA_FRONTEND_ENVIRONMENT: compose
24+
MINA_FRONTEND_ENVIRONMENT: local
2425
ports:
2526
- "8070:80"

0 commit comments

Comments
 (0)