Skip to content

Commit 24dd835

Browse files
authored
Merge pull request #1164 from MinaProtocol/dkijania/release330
update docker images from 3.1.0 -> 3.3.0
2 parents 2e6e144 + 1acb98b commit 24dd835

16 files changed

Lines changed: 48 additions & 48 deletions

File tree

docs/exchange-operators/rosetta/docker-compose.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ services:
3535
ports:
3636
- '5432:5432'
3737
bootstrap_db:
38-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
38+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
3939
command: >
4040
bash -c '
4141
curl -O https://storage.googleapis.com/mina-archive-dumps/mainnet-archive-dump-$(date +%F_0000).sql.tar.gz;
@@ -52,7 +52,7 @@ services:
5252
postgres:
5353
condition: service_healthy
5454
missing_blocks_guardian:
55-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
55+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
5656
command: >
5757
bash -c '
5858
curl -O https://raw.githubusercontent.com/MinaFoundation/helm-charts/main/mina-archive/scripts/missing-blocks-guardian-command.sh;
@@ -65,7 +65,7 @@ services:
6565
bootstrap_db:
6666
condition: service_completed_successfully
6767
mina_archive:
68-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
68+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
6969
restart: always
7070
command:
7171
- mina-archive
@@ -80,7 +80,7 @@ services:
8080
bootstrap_db:
8181
condition: service_completed_successfully
8282
mina_node:
83-
image: 'minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-mainnet'
83+
image: 'minaprotocol/mina-daemon:3.3.0-8c0c2e6-bullseye-mainnet'
8484
restart: always
8585
environment:
8686
MINA_LIBP2P_PASS: PssW0rD
@@ -100,7 +100,7 @@ services:
100100
bootstrap_db:
101101
condition: service_completed_successfully
102102
mina_rosetta:
103-
image: 'minaprotocol/mina-rosetta:3.1.0-ae112d3-bullseye-mainnet'
103+
image: 'minaprotocol/mina-rosetta:3.3.0-8c0c2e6-bullseye-mainnet'
104104
restart: always
105105
environment:
106106
MINA_ROSETTA_MAX_DB_POOL_SIZE: 80

docs/exchange-operators/rosetta/run-with-docker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Run the container with following command (replace the image tag with one from do
4747
docker run -it --rm --name rosetta \
4848
--entrypoint=./docker-start.sh \
4949
-p 10101:10101 -p 3085:3085 -p 3086:3086 -p 3087:3087 \
50-
minaprotocol/mina-rosetta:3.1.0-ae112d3-bullseye-mainnet
50+
minaprotocol/mina-rosetta:3.3.0-8c0c2e6-bullseye-mainnet
5151
```
5252

5353
You can also create a file with the environment variables and pass it to the docker run command with `--env-file` flag. For example, create a file named `mainnet.env` with the following content:

docs/node-developers/sandbox-node.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ docker run \
2626
--name mina \
2727
-e RUN_DEMO=true \
2828
-e MINA_PRIVKEY_PASS='' \
29-
minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-mainnet
29+
minaprotocol/mina-daemon:3.3.0-8c0c2e6-bullseye-mainnet
3030
3131
```
3232

docs/node-operators/archive-node/docker-compose.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ services:
3232
ports:
3333
- '5432:5432'
3434
bootstrap_db:
35-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
36-
# image: 'minaprotocol/mina-archive:3.1.0-alpha1-56cdb61-bullseye' # Use this image for Devnet
35+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
36+
# image: 'gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-bullseye-devnet' # Use this image for Devnet
3737
command: >
3838
bash -c '
3939
curl -O https://storage.googleapis.com/mina-archive-dumps/mainnet-archive-dump-$(date +%F_0000).sql.tar.gz;
@@ -51,8 +51,8 @@ services:
5151
postgres:
5252
condition: service_healthy
5353
missing_blocks_guardian:
54-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
55-
# image: 'minaprotocol/mina-archive:3.1.0-alpha1-56cdb61-bullseye' # Use this image for Devnet
54+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
55+
# image: 'gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-bullseye-devnet' # Use this image for Devnet
5656
command: >
5757
bash -c '
5858
curl -O https://raw.githubusercontent.com/MinaFoundation/helm-charts/main/mina-archive/scripts/missing-blocks-guardian-command.sh;
@@ -66,7 +66,7 @@ services:
6666
bootstrap_db:
6767
condition: service_completed_successfully
6868
mina_archive:
69-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
69+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
7070
restart: always
7171
command:
7272
- mina-archive
@@ -81,8 +81,8 @@ services:
8181
bootstrap_db:
8282
condition: service_completed_successfully
8383
mina_node:
84-
image: 'minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-mainnet'
85-
# image: 'minaprotocol/mina-daemon:3.1.0-alpha1-56cdb61-bullseye-devnet' # Use this image for Devnet
84+
image: 'minaprotocol/mina-daemon:3.3.0-8c0c2e6-bullseye-mainnet'
85+
# image: 'gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-bullseye-devnet' # Use this image for Devnet
8686
restart: always
8787
entrypoint: []
8888
command: >

docs/node-operators/archive-node/getting-started.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Running an archive node requires some knowledge of managing a PostgreSQL databas
5555
- Ubuntu/Debian:
5656

5757
```
58-
sudo apt-get install mina-archive=3.1.0-ae112d3
58+
sudo apt-get install mina-archive=3.3.0-8c0c2e6
5959
```
6060

6161
- Docker:
6262

6363
```
64-
minaprotocol/mina-archive:3.1.0-ae112d3-bullseye
64+
minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet
6565
```
6666

6767
## Set up the archive node
@@ -125,7 +125,7 @@ To get started with installing and running the archive node using Docker, follow
125125
2. Pull the archive node image from Docker Hub.
126126

127127
```sh
128-
docker pull minaprotocol/mina-archive:3.1.0-ae112d3-bullseye
128+
docker pull minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet
129129
```
130130

131131
3. Pull and install the postgres image from Docker Hub.
@@ -168,7 +168,7 @@ To get started with installing and running the archive node using Docker, follow
168168
--name archive \
169169
-p 3086:3086 \
170170
-v /tmp/archive:/data \
171-
minaprotocol/mina-archive:3.1.0-ae112d3-bullseye \
171+
minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet \
172172
mina-archive run \
173173
--postgres-uri postgres://postgres:postgres@postgres:5432/archive \
174174
--server-port 3086
@@ -212,7 +212,7 @@ To run the archive node using Docker Compose:
212212
3. Pull the archive node image from Docker Hub.
213213

214214
```sh
215-
docker pull minaprotocol/mina-archive:3.1.0-ae112d3-bullseye
215+
docker pull minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet
216216
```
217217

218218
4. Pull and install the postgres image from Docker Hub.
@@ -240,7 +240,7 @@ To run the archive node using Docker Compose:
240240
ports:
241241
- '5432:5432'
242242
archive:
243-
image: 'minaprotocol/mina-archive:3.1.0-ae112d3-bullseye'
243+
image: 'minaprotocol/mina-archive:3.3.0-8c0c2e6-bullseye-mainnet'
244244
command: >-
245245
mina-archive run --postgres-uri
246246
postgres://postgres:postgres@postgres:5432/archive --server-port 3086

docs/node-operators/block-producer-node/connecting-to-devnet.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sudo rm /etc/apt/sources.list.d/mina*.list
4242
sudo echo "deb [trusted=yes] http://packages.o1test.net $(lsb_release -cs) devnet" | sudo tee /etc/apt/sources.list.d/mina-devnet.list
4343
sudo apt-get install --yes apt-transport-https
4444
sudo apt-get update
45-
sudo apt-get install --yes curl unzip mina-devnet=3.1.0-alpha1
45+
sudo apt-get install --yes curl unzip mina-devnet=3.3.0-alpha1
4646
```
4747

4848
To check that daemon installed correctly:
@@ -126,7 +126,7 @@ docker run --name mina -d \
126126
--restart=always \
127127
-v $(pwd)/.mina-config:/data/.mina-config \
128128
-v $(pwd)/.mina-env:/entrypoint.d/mina-env \
129-
minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-devnet \
129+
gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-bullseye-devnet \
130130
daemon
131131
```
132132

docs/node-operators/block-producer-node/connecting-to-the-network.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The first step to connecting to Mainnet is to install the latest daemon version.
3434

3535
### Ubuntu 20.04 and Debian 11
3636

37-
To install the latest [Mainnet **Stable** Release 3.1.0](https://github.com/MinaProtocol/mina/releases/tag/3.1.0), use the [Installation](/node-operators/block-producer-node/getting-started#installation) steps for your environment.
37+
To install the latest [Mainnet **Stable** Release 3.3.0](https://github.com/MinaProtocol/mina/releases/tag/3.3.0), use the [Installation](/node-operators/block-producer-node/getting-started#installation) steps for your environment.
3838

3939
## Start a standalone mina node
4040

@@ -179,7 +179,7 @@ docker run --name mina -d \
179179
--mount "type=bind,source=$(pwd)/.mina-env,dst=/entrypoint.d/mina-env,readonly" \
180180
--mount "type=bind,source=$(pwd)/keys,dst=/keys,readonly" \
181181
--mount "type=bind,source=$(pwd)/.mina-config,dst=/root/.mina-config" \
182-
minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-mainnet \
182+
minaprotocol/mina-daemon:3.3.0-8c0c2e6-bullseye-mainnet \
183183
daemon
184184
```
185185

docs/node-operators/block-producer-node/docker-compose.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Copy and paste the provided configuration into a `docker-compose.yml` file. Then
1717
```yaml
1818
services:
1919
generate_wallet_key:
20-
image: 'minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-mainnet'
21-
# image: 'minaprotocol/mina-daemon:3.1.0-alpha1-56cdb61-bullseye-devnet' # Use this image for Devnet
20+
image: 'minaprotocol/mina-daemon:3.3.0-8c0c2e6-bullseye-mainnet'
21+
# image: 'gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-bullseye-devnet' # Use this image for Devnet
2222
environment:
2323
MINA_PRIVKEY_PASS: PssW0rD
2424
entrypoint: []
@@ -31,8 +31,8 @@ services:
3131
volumes:
3232
- './node/mina-config:/data/.mina-config'
3333
mina_block_producer:
34-
image: 'minaprotocol/mina-daemon:3.1.0-ae112d3-bullseye-mainnet'
35-
# image: 'minaprotocol/mina-daemon:3.1.0-alpha1-56cdb61-bullseye-devnet' # Use this image for Devnet
34+
image: 'minaprotocol/mina-daemon:3.3.0-8c0c2e6-bullseye-mainnet'
35+
# image: 'gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-bullseye-devnet' # Use this image for Devnet
3636
restart: always
3737
environment:
3838
MINA_PRIVKEY_PASS: PssW0rD

docs/node-operators/block-producer-node/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ sudo apt-get update
7979
Now install the node package.
8080

8181
```
82-
sudo apt-get install -y curl unzip mina-mainnet=3.1.0-ae112d3
82+
sudo apt-get install -y curl unzip mina-mainnet=3.3.0-8c0c2e6
8383
```
8484

8585

docs/node-operators/data-and-history/rosetta.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ We recommend using Rosetta API if you are:
3030

3131
1. [Install Docker](https://www.docker.com/get-started) and check that your Docker configuration has at least 12 GB RAM (the recommended amount is 16 GB).
3232

33-
2. Use the official image `minaprotocol/mina-rosetta:3.1.0-ae112d3-focal-mainnet`, which is built in exactly this way by buildkite CI/CD.
33+
2. Use the official image `minaprotocol/mina-rosetta:3.3.0-8c0c2e6-focal-mainnet`, which is built in exactly this way by buildkite CI/CD.
3434

3535
:::note
3636

@@ -61,7 +61,7 @@ To run docker-start.sh and connect to the live Mainnet:
6161
docker run -it --rm --name rosetta \
6262
--entrypoint=./docker-start.sh \
6363
-p 8302:8302 -p 3085:3085 -p 3086:3086 -p 3087:3087 \
64-
minaprotocol/mina-rosetta:3.1.0-ae112d3-focal-mainnet
64+
minaprotocol/mina-rosetta:3.3.0-8c0c2e6-focal-mainnet
6565

6666

6767
#### Mainnet:Offline
@@ -73,7 +73,7 @@ To run docker-standalone-start.sh and connect to the offline Mainnet:
7373
docker run -it --rm --name rosetta \
7474
--entrypoint=./docker-standalone-start.sh \
7575
-p 8302:8302 -p 3085:3085 -p 3086:3086 -p 3087:3087 \
76-
minaprotocol/mina-rosetta:3.1.0-ae112d3-focal-mainnet
76+
minaprotocol/mina-rosetta:3.3.0-8c0c2e6-focal-mainnet
7777

7878
#### Demo:Offline
7979

@@ -84,7 +84,7 @@ To run the docker-demo-start.sh and connect to the demo network:
8484
docker run -it --rm --name rosetta \
8585
--entrypoint=./docker-demo-start.sh \
8686
-p 8302:8302 -p 3085:3085 -p 3086:3086 -p 3087:3087 \
87-
minaprotocol/mina-rosetta:3.1.0-ae112d3-focal-mainnet
87+
minaprotocol/mina-rosetta:3.3.0-8c0c2e6-focal-mainnet
8888

8989
#### Devnet:Online
9090

0 commit comments

Comments
 (0)