Skip to content

Commit d854877

Browse files
authored
chore: upgraded the node to version 8.9.3 (#875)
1 parent 131d524 commit d854877

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

README.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Check the [releases] for the latest version.
4040
``` console
4141
git clone \
4242
--single-branch \
43-
--branch 8.0.3 \
43+
--branch 8.1.0 \
4444
--recurse-submodules \
4545
https://github.com/cardano-foundation/cardano-graphql.git \
4646
&& cd cardano-graphql
@@ -78,7 +78,6 @@ API_PORT=3101 \
7878
HASURA_PORT=8091 \
7979
OGMIOS_PORT=1338 \
8080
POSTGRES_PORT=5433 \
81-
METADATA_SERVER_URI="https://metadata.world.dev.cardano.org" \
8281
docker compose -p preprod up -d --build &&\
8382
docker compose -p preprod logs -f
8483
```
@@ -96,7 +95,6 @@ API_PORT=3102 \
9695
HASURA_PORT=8092 \
9796
OGMIOS_PORT=1339 \
9897
POSTGRES_PORT=5434 \
99-
METADATA_SERVER_URI="https://metadata.world.dev.cardano.org" \
10098
docker compose -p preview up -d --build &&\
10199
docker compose -p preview logs -f
102100
```
@@ -113,7 +111,6 @@ API_PORT=3102 \
113111
HASURA_PORT=8092 \
114112
OGMIOS_PORT=1339 \
115113
POSTGRES_PORT=5434 \
116-
METADATA_SERVER_URI="https://metadata.world.dev.cardano.org" \
117114
docker compose -p preview up -d --build &&\
118115
docker compose -p preview logs -f
119116
```
@@ -130,10 +127,10 @@ your use-case.
130127
Get the most recent weekly snapshot link [here](https://update-cardano-mainnet.iohk.io/cardano-db-sync/index.html#11/), and set it as `RESTORE_SNAPSHOT` below, or omit if you wish to sync from genesis.
131128
``` console
132129
export NETWORK=mainnet &&\
133-
docker pull cardanofoundation/cardano-graphql-server:8.0.3-${NETWORK} &&\
134-
docker pull cardanofoundation/cardano-graphql-background:8.0.3-${NETWORK} &&\
135-
docker pull cardanofoundation/cardano-graphql-hasura:8.0.3 &&\
136-
docker pull cardanosolutions/cardano-node-ogmios:v5.6.0_1.35.5-${NETWORK} &&\
130+
docker pull cardanofoundation/cardano-graphql-server:8.1.0-${NETWORK} &&\
131+
docker pull cardanofoundation/cardano-graphql-background:8.1.0-${NETWORK} &&\
132+
docker pull cardanofoundation/cardano-graphql-hasura:8.1.0 &&\
133+
docker pull cardanosolutions/cardano-node-ogmios:v6.4.0_8.9.3-${NETWORK} &&\
137134
RESTORE_SNAPSHOT=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13.2/db-sync-snapshot-schema-13.2-block-10060706-x86_64.tgz \
138135
docker compose up -d &&\
139136
docker compose logs -f
@@ -145,10 +142,10 @@ docker compose logs -f
145142

146143
``` console
147144
export NETWORK=preprod &&\
148-
docker pull cardanofoundation/cardano-graphql-server:8.0.3-${NETWORK} &&\
149-
docker pull cardanofoundation/cardano-graphql-background:8.0.3-${NETWORK} &&\
150-
docker pull cardanofoundation/cardano-graphql-hasura:8.0.3 &&\
151-
docker pull cardanosolutions/cardano-node-ogmios:v5.6.0_1.35.5-${NETWORK} &&\
145+
docker pull cardanofoundation/cardano-graphql-server:8.1.0-${NETWORK} &&\
146+
docker pull cardanofoundation/cardano-graphql-background:8.1.0-${NETWORK} &&\
147+
docker pull cardanofoundation/cardano-graphql-hasura:8.1.0 &&\
148+
docker pull cardanosolutions/cardano-node-ogmios:v6.4.0_8.9.3-${NETWORK} &&\
152149
API_PORT=3101 \
153150
HASURA_PORT=8091 \
154151
OGMIOS_PORT=1338 \
@@ -164,10 +161,10 @@ docker compose -p ${NETWORK} logs -f
164161

165162
``` console
166163
export NETWORK=preview &&\
167-
docker pull cardanofoundation/cardano-graphql-server:8.0.3-${NETWORK} &&\
168-
docker pull cardanofoundation/cardano-graphql-background:8.0.3-${NETWORK} &&\
169-
docker pull cardanofoundation/cardano-graphql-hasura:8.0.3 &&\
170-
docker pull cardanosolutions/cardano-node-ogmios:v6.2.0_8.9.0-${NETWORK} &&\
164+
docker pull cardanofoundation/cardano-graphql-server:8.1.0-${NETWORK} &&\
165+
docker pull cardanofoundation/cardano-graphql-background:8.1.0-${NETWORK} &&\
166+
docker pull cardanofoundation/cardano-graphql-hasura:8.1.0 &&\
167+
docker pull cardanosolutions/cardano-node-ogmios:v6.4.0_8.9.3-${NETWORK} &&\
171168
API_PORT=3102 \
172169
HASURA_PORT=8092 \
173170
OGMIOS_PORT=1339 \
@@ -210,10 +207,14 @@ docker compose -p preview down
210207
### Use global Token Metadata Registry
211208
The public Token metadata registry has a limit of daily requests, this can lead to long sync times, when resyncing from scratch.
212209
If it's still needed to run with the global environment it's possible by removing the `token-metadata-registry` from `docker-compose.yml`.
213-
And start it with:
210+
And start it with for Mainnet:
214211
```
215212
METADATA_SERVER_URI="https://tokens.cardano.org" docker compose up -d
216213
```
214+
For other networks:
215+
```
216+
METADATA_SERVER_URI="https://metadata.world.dev.cardano.org"
217+
```
217218

218219
### Upgrade Database to Postgres 14
219220
If you are upgrading from Postgres 11 to 14: A resync will be needed.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626

2727
cardano-node-ogmios:
2828
platform: linux/x86_64
29-
image: cardanosolutions/cardano-node-ogmios:${OGMIOS_VERSION:-v6.2.0}_${CARDANO_NODE_VERSION:-8.9.0}-${NETWORK:-mainnet}
29+
image: cardanosolutions/cardano-node-ogmios:${OGMIOS_VERSION:-v6.4.0}_${CARDANO_NODE_VERSION:-8.9.3}-${NETWORK:-mainnet}
3030
logging:
3131
driver: "json-file"
3232
options:

0 commit comments

Comments
 (0)