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:
103
103
104
104
## Quick Start with Docker Compose
105
105
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
107
107
configuration:
108
108
109
109
``` bash
@@ -112,7 +112,7 @@ git clone https://github.com/o1-labs/mina-rust.git
112
112
cd mina-rust
113
113
114
114
# Start node and frontend
115
- docker- compose up -d
115
+ docker compose up -d
116
116
117
117
# Access the frontend at http://localhost:8070
118
118
```
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
146
146
dashboard together:
147
147
148
148
``` bash
149
- # Clone the repository to get the docker- compose.yml file
149
+ # Clone the repository to get the docker compose configuration
150
150
git clone https://github.com/o1-labs/mina-rust.git
151
151
cd mina-rust
152
152
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
155
155
156
156
# View logs
157
- docker- compose logs -f
157
+ docker compose logs -f
158
158
159
159
# Stop services
160
- docker- compose down
160
+ docker compose down
161
161
```
162
162
163
163
#### Configuration Options
164
164
165
- The docker- compose setup supports several environment variables:
165
+ The docker compose setup supports several environment variables:
166
166
167
167
``` bash
168
168
# 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
170
170
171
171
# 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
173
173
174
174
# 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
176
176
```
177
177
178
178
#### What's Included
You can’t perform that action at this time.
0 commit comments