Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bumped node and db-sync to latest versions #580

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ ARG IOHK_LIBSODIUM_GIT_REV=dbb48cce
ARG SECP256K1_VERSION=v0.3.2
ARG BLST_VERSION=v0.3.11

ARG NODE_VERSION=9.1.1
ARG CARDANO_DB_SYNC_VERSION=13.5.0.2
ARG NODE_VERSION=10.1.2
ARG CARDANO_DB_SYNC_VERSION=13.6.0.1

RUN mkdir -p /app/src
WORKDIR /app
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ DOCKER_BUILDKIT=1 \
docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--cache-from=cardanofoundation/cardano-rosetta:master \
-t cardanofoundation/cardano-rosetta:2.3.3 \
-t cardanofoundation/cardano-rosetta:2.4.0 \
.
```
</details>
Expand All @@ -40,7 +40,7 @@ docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg NETWORK=preprod \
--cache-from=cardanofoundation/cardano-rosetta:master \
-t cardanofoundation/cardano-rosetta:2.3.3-preprod \
-t cardanofoundation/cardano-rosetta:2.4.0-preprod \
.
```

Expand All @@ -55,7 +55,7 @@ docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg NETWORK=preview \
--cache-from=cardanofoundation/cardano-rosetta:master \
-t cardanofoundation/cardano-rosetta:2.3.3-preview \
-t cardanofoundation/cardano-rosetta:2.4.0-preview \
.
```

Expand All @@ -68,10 +68,10 @@ DOCKER_BUILDKIT=1 \
docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg NETWORK=sanchonet \
--build-arg CARDANO_DB_SYNC_VERSION=13.5.0.2 \
--build-arg CARDANO_DB_SYNC_VERSION=13.6.0.1 \
--build-arg DB_SYNC_TAG=sanch-5-1-0
--cache-from=cardanofoundation/cardano-rosetta:master \
-t cardanofoundation/cardano-rosetta:2.3.3-sanchonet \
-t cardanofoundation/cardano-rosetta:2.4.0-sanchonet \
.
```
</details>
Expand All @@ -90,7 +90,7 @@ docker run \
-p 8080:8080 \
-v cardano-rosetta:/data \
--shm-size=2g \
cardanofoundation/cardano-rosetta:2.3.3
cardanofoundation/cardano-rosetta:2.4.0
```
</details>

Expand All @@ -103,7 +103,7 @@ docker run \
-p 8081:8080 \
-v cardano-rosetta-preprod:/data \
--shm-size=2g \
cardanofoundation/cardano-rosetta:2.3.3-preprod
cardanofoundation/cardano-rosetta:2.4.0-preprod
```

</details>
Expand All @@ -117,7 +117,7 @@ docker run \
-p 8081:8080 \
-v cardano-rosetta-preview:/data \
--shm-size=2g \
cardanofoundation/cardano-rosetta:2.3.3-preview
cardanofoundation/cardano-rosetta:2.4.0-preview
```

</details>
Expand All @@ -131,7 +131,7 @@ docker run \
-p 8081:8080 \
-v cardano-rosetta-preview:/data \
--shm-size=2g \
cardanofoundation/cardano-rosetta:2.3.3-sanchonet
cardanofoundation/cardano-rosetta:2.4.0-sanchonet
```

</details>
Expand Down Expand Up @@ -193,10 +193,10 @@ For example:
DOCKER_BUILDKIT=1 \
docker build \
--build-arg BUILDKIT_INLINE_CACHE=1 \
--build-arg SNAPSHOT_URL=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13.5/db-sync-snapshot-schema-13.5-block-10781364-x86_64.tgz \
--build-arg SNAPSHOT_URL=https://update-cardano-mainnet.iohk.io/cardano-db-sync/13.6/db-sync-snapshot-schema-13.6-block-11090788-x86_64.tgz \
--cache-from=cardanofoundation/cardano-rosetta:master \
-t cardanofoundation/cardano-rosetta:2.3.3-apply-snapshot \
https://github.com/cardanofoundation/cardano-rosetta.git#2.3.3
-t cardanofoundation/cardano-rosetta:2.4.0-apply-snapshot \
https://github.com/cardanofoundation/cardano-rosetta.git#2.4.0
```

</details>
Expand Down
2 changes: 1 addition & 1 deletion cardano-rosetta-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cardano-rosetta-server",
"version": "2.3.3",
"version": "2.4.0",
"description": "Rosetta API server specification implementation",
"main": "index.js",
"scripts": {
Expand Down
Loading