Skip to content

Commit e8ff5ea

Browse files
linconvidalLincon VidalKammerlo
authored
bump cardano-node, db-sync, ogmios versions (#893)
* bump cardano-node, db-sync, ogmios versions * bump ogmios to v6.6.1 * bump db-sync version --------- Co-authored-by: Lincon Vidal <[email protected]> Co-authored-by: Thomas Kammerlocher <[email protected]>
1 parent 3d6eae9 commit e8ff5ea

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

README.md

+4-3
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.2.1 \
43+
--branch 8.2.2 \
4444
--recurse-submodules \
4545
https://github.com/cardano-foundation/cardano-graphql.git \
4646
&& cd cardano-graphql
@@ -60,7 +60,7 @@ You can download snapshots using Mithril, which are available for mainnet, prepr
6060
A detailed explanation can be found [here](https://mithril.network/doc/manual/getting-started/bootstrap-cardano-node)
6161
<details open>
6262
<summary><i>mainnet</i></summary>
63-
Get the most recent weekly snapshot link [here](https://update-cardano-mainnet.iohk.io/cardano-db-sync/index.html#13.4/), and set it as `RESTORE_SNAPSHOT` below, or omit if you wish to sync from genesis.
63+
Get the most recent weekly snapshot link [here](https://update-cardano-mainnet.iohk.io/cardano-db-sync/index.html#13.5/), and set it as `RESTORE_SNAPSHOT` below, or omit if you wish to sync from genesis.
6464

6565
> **Disclaimer:** The Chainfollower environment variables are currently mandatory.
6666
> Otherwise the Token registry will get stuck.
@@ -71,7 +71,7 @@ DOCKER_BUILDKIT=1 \
7171
COMPOSE_DOCKER_CLI_BUILD=1 \
7272
CHAIN_FOLLOWER_START_SLOT=23068800 \
7373
CHAIN_FOLLOWER_START_ID=a650a3f398ba4a9427ec8c293e9f7156d81fd2f7ca849014d8d2c1156c359b3a \
74-
RESTORE_SNAPSHOT=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13.4/db-sync-snapshot-schema-13.4-block-10683068-x86_64.tgz \
74+
RESTORE_SNAPSHOT=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13.5/db-sync-snapshot-schema-13.5-block-10781364-x86_64.tgz \
7575
docker compose up -d --build &&\
7676
docker compose logs -f
7777
```
@@ -113,6 +113,7 @@ docker compose -p preview logs -f
113113

114114
<details>
115115
<summary><i>sanchonet</i></summary>
116+
116117
``` console
117118
DOCKER_BUILDKIT=1 \
118119
COMPOSE_DOCKER_CLI_BUILD=1 \

docker-compose.yml

+8-11
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ services:
2626
max-file: "10"
2727

2828
cardano-node:
29-
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-9.1.0}
29+
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-9.1.1}
3030
environment:
3131
- NETWORK=${NETWORK:-mainnet}
3232
volumes:
3333
- node-ipc:/ipc
3434
- node-db:/node/db
3535
- ./config/network/${NETWORK:-mainnet}:/config
3636
entrypoint: cardano-node run --database-path /node/db --socket-path /ipc/node.socket --topology /config/cardano-node/topology.json --config /config/cardano-node/config.json
37-
37+
3838
ogmios:
39-
image: cardanosolutions/ogmios:${OGMIOS_VERSION:-v6.5.0}
39+
image: cardanosolutions/ogmios:${OGMIOS_VERSION:-v6.6.1}
4040
command:
4141
- --host
4242
- 0.0.0.0
@@ -55,11 +55,8 @@ services:
5555

5656
cardano-db-sync:
5757
platform: linux/x86_64
58-
image: ghcr.io/intersectmbo/cardano-db-sync:${CARDANO_DB_SYNC_VERSION:-13.4.0.0}
59-
command: [
60-
"--config", "/config/cardano-db-sync/config.json",
61-
"--socket-path", "/node-ipc/node.socket"
62-
]
58+
image: ghcr.io/intersectmbo/cardano-db-sync:${CARDANO_DB_SYNC_VERSION:-13.5.0.2}
59+
command: [ "--config", "/config/cardano-db-sync/config.json", "--socket-path", "/node-ipc/node.socket" ]
6360
environment:
6461
- POSTGRES_HOST=postgres
6562
- POSTGRES_PORT=${POSTGRES_PORT:-5432}
@@ -90,7 +87,7 @@ services:
9087
hasura:
9188
build:
9289
context: ./packages/api-cardano-db-hasura/hasura
93-
image: cardanofoundation/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-8.2.1}
90+
image: cardanofoundation/cardano-graphql-hasura:${CARDANO_GRAPHQL_VERSION:-8.2.2}
9491
ports:
9592
- ${HASURA_PORT:-8090}:8080
9693
depends_on:
@@ -114,7 +111,7 @@ services:
114111
build:
115112
context: .
116113
target: background
117-
image: cardanofoundation/cardano-graphql-background:${CARDANO_GRAPHQL_VERSION:-8.2.1}-${NETWORK:-mainnet}
114+
image: cardanofoundation/cardano-graphql-background:${CARDANO_GRAPHQL_VERSION:-8.2.2}-${NETWORK:-mainnet}
118115
depends_on:
119116
- "hasura"
120117
- "postgres"
@@ -142,7 +139,7 @@ services:
142139
- NETWORK=${NETWORK:-mainnet}
143140
context: .
144141
target: server
145-
image: cardanofoundation/cardano-graphql-server:${CARDANO_GRAPHQL_VERSION:-8.2.1}-${NETWORK:-mainnet}
142+
image: cardanofoundation/cardano-graphql-server:${CARDANO_GRAPHQL_VERSION:-8.2.2}-${NETWORK:-mainnet}
146143
environment:
147144
- ALLOW_INTROSPECTION=true
148145
- CACHE_ENABLED=true

0 commit comments

Comments
 (0)