@@ -40,7 +40,7 @@ Check the [releases] for the latest version.
40
40
``` console
41
41
git clone \
42
42
--single-branch \
43
- --branch 8.0.3 \
43
+ --branch 8.1.0 \
44
44
--recurse-submodules \
45
45
https://github.com/cardano-foundation/cardano-graphql.git \
46
46
&& cd cardano-graphql
@@ -78,7 +78,6 @@ API_PORT=3101 \
78
78
HASURA_PORT=8091 \
79
79
OGMIOS_PORT=1338 \
80
80
POSTGRES_PORT=5433 \
81
- METADATA_SERVER_URI="https://metadata.world.dev.cardano.org" \
82
81
docker compose -p preprod up -d --build &&\
83
82
docker compose -p preprod logs -f
84
83
```
@@ -96,7 +95,6 @@ API_PORT=3102 \
96
95
HASURA_PORT=8092 \
97
96
OGMIOS_PORT=1339 \
98
97
POSTGRES_PORT=5434 \
99
- METADATA_SERVER_URI="https://metadata.world.dev.cardano.org" \
100
98
docker compose -p preview up -d --build &&\
101
99
docker compose -p preview logs -f
102
100
```
@@ -113,7 +111,6 @@ API_PORT=3102 \
113
111
HASURA_PORT=8092 \
114
112
OGMIOS_PORT=1339 \
115
113
POSTGRES_PORT=5434 \
116
- METADATA_SERVER_URI="https://metadata.world.dev.cardano.org" \
117
114
docker compose -p preview up -d --build &&\
118
115
docker compose -p preview logs -f
119
116
```
@@ -130,10 +127,10 @@ your use-case.
130
127
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.
131
128
``` console
132
129
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} &&\
137
134
RESTORE_SNAPSHOT=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13.2/db-sync-snapshot-schema-13.2-block-10060706-x86_64.tgz \
138
135
docker compose up -d &&\
139
136
docker compose logs -f
@@ -145,10 +142,10 @@ docker compose logs -f
145
142
146
143
``` console
147
144
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} &&\
152
149
API_PORT=3101 \
153
150
HASURA_PORT=8091 \
154
151
OGMIOS_PORT=1338 \
@@ -164,10 +161,10 @@ docker compose -p ${NETWORK} logs -f
164
161
165
162
``` console
166
163
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} &&\
171
168
API_PORT=3102 \
172
169
HASURA_PORT=8092 \
173
170
OGMIOS_PORT=1339 \
@@ -210,10 +207,14 @@ docker compose -p preview down
210
207
### Use global Token Metadata Registry
211
208
The public Token metadata registry has a limit of daily requests, this can lead to long sync times, when resyncing from scratch.
212
209
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 :
214
211
```
215
212
METADATA_SERVER_URI="https://tokens.cardano.org" docker compose up -d
216
213
```
214
+ For other networks:
215
+ ```
216
+ METADATA_SERVER_URI="https://metadata.world.dev.cardano.org"
217
+ ```
217
218
218
219
### Upgrade Database to Postgres 14
219
220
If you are upgrading from Postgres 11 to 14: A resync will be needed.
0 commit comments