Skip to content

Commit 28bcfa6

Browse files
authored
chore:bump node to 10.1.4 (#268)
* chore:bump node to 10.1.4 * docs: updated README.md
1 parent a866cc0 commit 28bcfa6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.env.docker-compose

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CARDANO_NODE_HOST=cardano-node
2525
# Service name in docker-compose or local cardano node
2626
CARDANO_NODE_PORT=3001
2727
# Uncomment if you are using local cardano node
28-
CARDANO_NODE_VERSION=10.1.3
28+
CARDANO_NODE_VERSION=10.1.4
2929
CARDANO_NODE_SUBMIT_HOST=cardano-submit-api
3030
NODE_SUBMIT_API_PORT=8090
3131
CARDANO_NODE_DIR=/node

.env.h2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ CARDANO_NODE_HOST=localhost
1919
# Service name in docker-compose or local cardano node
2020
CARDANO_NODE_PORT=3001
2121
# Uncomment if you are using local cardano node
22-
CARDANO_NODE_VERSION=10.1.3
22+
CARDANO_NODE_VERSION=10.1.4
2323
CARDANO_NODE_SUBMIT_HOST=localhost
2424
NODE_SUBMIT_API_PORT=8090
2525

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ Default is `online`.
8080
For every Release we provide pre-built docker images stored in the DockerHub Repositories of the Cardano Foundation ([DockerHub](https://hub.docker.com/orgs/cardanofoundation/repositories))
8181
To start it use the following command:
8282
```bash
83-
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile -p 8082:8082 -d cardanofoundation/cardano-rosetta-java:1.0-rc4
83+
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile -p 8082:8082 -d cardanofoundation/cardano-rosetta-java:1.1.5
8484
```
8585
Changes to the configuration can be made by adjusting the `docker/.env.dockerfile` file. For more information on the environment variables, please refer to the [Wiki](https://github.com/cardano-foundation/cardano-rosetta-java/wiki/5.-Environment-Variables).
8686

8787
If you want to use the `cardano-submit-api` you can additionally expose port `8090`. It can then be used to submit raw cbor transaction (API documentation here: [Link](https://input-output-hk.github.io/cardano-rest/submit-api/))
8888
```bash
89-
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile -p 8090:8090 -p 8082:8082 -d cardanofoundation/cardano-rosetta-java:1.0.1
89+
docker run --name rosetta -v {CUSTOM_MOUNT_PATH}:/node --env-file ./docker/.env.dockerfile -p 8090:8090 -p 8082:8082 -d cardanofoundation/cardano-rosetta-java:1.1.5
9090
```
9191

9292
### Docker compose

docker/.env.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ DB_PORT=5432
3333
## Cardano node variables
3434
CARDANO_NODE_HOST=localhost
3535
CARDANO_NODE_PORT=3001
36-
CARDANO_NODE_VERSION=10.1.3
36+
CARDANO_NODE_VERSION=10.1.4
3737
CARDANO_NODE_SUBMIT_HOST=localhost
3838
NODE_SUBMIT_API_PORT=8090
3939
CARDANO_NODE_SOCKET_PATH=/node/node.socket

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ RUN git clone https://github.com/input-output-hk/mithril.git \
5151

5252

5353
# Cardano node version
54-
ARG CARDANO_NODE_VERSION=10.1.3
54+
ARG CARDANO_NODE_VERSION=10.1.4
5555

5656
# Install sodium
5757
RUN export IOHKNIX_VERSION=$(curl https://raw.githubusercontent.com/IntersectMBO/cardano-node/${CARDANO_NODE_VERSION}/flake.lock | jq -r '.nodes.iohkNix.locked.rev') \

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</licenses>
2727

2828
<properties>
29-
<revision>1.1.4</revision>
29+
<revision>1.1.5</revision>
3030
<java.version>21</java.version>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<version.spring-boot>3.2.4</version.spring-boot>

0 commit comments

Comments
 (0)