File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ You can find available tags at:
103103
104104## Quick Start with Docker Compose
105105
106- The easiest way to get started is using the provided docker- compose
106+ The easiest way to get started is using the provided docker compose
107107configuration:
108108
109109``` bash
@@ -112,7 +112,7 @@ git clone https://github.com/o1-labs/mina-rust.git
112112cd mina-rust
113113
114114# Start node and frontend
115- docker- compose up -d
115+ docker compose up -d
116116
117117# Access the frontend at http://localhost:8070
118118```
Original file line number Diff line number Diff line change @@ -146,33 +146,33 @@ Docker Compose provides the easiest way to run both the Mina node and frontend
146146dashboard together:
147147
148148``` bash
149- # Clone the repository to get the docker- compose.yml file
149+ # Clone the repository to get the docker compose configuration
150150git clone https://github.com/o1-labs/mina-rust.git
151151cd mina-rust
152152
153- # Start both node and frontend using docker- compose
154- docker- compose up -d
153+ # Start both node and frontend using docker compose
154+ docker compose up -d
155155
156156# View logs
157- docker- compose logs -f
157+ docker compose logs -f
158158
159159# Stop services
160- docker- compose down
160+ docker compose down
161161```
162162
163163#### Configuration Options
164164
165- The docker- compose setup supports several environment variables:
165+ The docker compose setup supports several environment variables:
166166
167167``` bash
168168# Use specific versions (recommended for production)
169- MINA_RUST_TAG=v1.4.2 MINA_FRONTEND_TAG=v1.4.2 docker- compose up -d
169+ MINA_RUST_TAG=v1.4.2 MINA_FRONTEND_TAG=v1.4.2 docker compose up -d
170170
171171# Use development version (latest features, unstable)
172- MINA_RUST_TAG=develop MINA_FRONTEND_TAG=develop docker- compose up -d
172+ MINA_RUST_TAG=develop MINA_FRONTEND_TAG=develop docker compose up -d
173173
174174# Configure custom libp2p settings
175- MINA_LIBP2P_PORT=9302 MINA_LIBP2P_EXTERNAL_IP=203.0.113.1 docker- compose up -d
175+ MINA_LIBP2P_PORT=9302 MINA_LIBP2P_EXTERNAL_IP=203.0.113.1 docker compose up -d
176176```
177177
178178#### What's Included
You can’t perform that action at this time.
0 commit comments