Skip to content

Commit 1e23b5f

Browse files
committed
Website: use docker compose instead of old docker-compose
1 parent 7863bf6 commit 1e23b5f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

website/docs/developers/docker-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
107107
configuration:
108108

109109
```bash
@@ -112,7 +112,7 @@ git clone https://github.com/o1-labs/mina-rust.git
112112
cd 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
```

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -146,33 +146,33 @@ Docker Compose provides the easiest way to run both the Mina node and frontend
146146
dashboard 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
150150
git clone https://github.com/o1-labs/mina-rust.git
151151
cd 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

0 commit comments

Comments
 (0)