Skip to content

Commit

Permalink
Feat/bump node 9.2.0 (#245)
Browse files Browse the repository at this point in the history
* feat: bump node version to 9.2.0

* feat: updated maven version for release 1.0.0
  • Loading branch information
Kammerlo authored Sep 25, 2024
1 parent 34e0769 commit b71e335
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .env.docker-compose
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CARDANO_NODE_HOST=cardano-node
# Service name in docker-compose or local cardano node
CARDANO_NODE_PORT=3001
# Uncomment if you are using local cardano node
CARDANO_NODE_VERSION=9.1.1
CARDANO_NODE_VERSION=9.2.0
CARDANO_NODE_SUBMIT_HOST=cardano-submit-api
NODE_SUBMIT_API_PORT=8090
CARDANO_NODE_DIR=/node
Expand Down
2 changes: 1 addition & 1 deletion .env.h2
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ CARDANO_NODE_HOST=localhost
# Service name in docker-compose or local cardano node
CARDANO_NODE_PORT=3001
# Uncomment if you are using local cardano node
CARDANO_NODE_VERSION=9.1.1
CARDANO_NODE_VERSION=9.2.0
CARDANO_NODE_SUBMIT_HOST=localhost
NODE_SUBMIT_API_PORT=8090

Expand Down
2 changes: 1 addition & 1 deletion docker/.env.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ DB_PORT=5432
## Cardano node variables
CARDANO_NODE_HOST=localhost
CARDANO_NODE_PORT=3001
CARDANO_NODE_VERSION=9.1.1
CARDANO_NODE_VERSION=9.2.0
CARDANO_NODE_SUBMIT_HOST=localhost
NODE_SUBMIT_API_PORT=8090
CARDANO_NODE_SOCKET_PATH=/node/node.socket
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN git clone https://github.com/input-output-hk/mithril.git \


# Cardano node version
ARG CARDANO_NODE_VERSION=9.1.1
ARG CARDANO_NODE_VERSION=9.2.0

# Install sodium
RUN export IOHKNIX_VERSION=$(curl https://raw.githubusercontent.com/IntersectMBO/cardano-node/${CARDANO_NODE_VERSION}/flake.lock | jq -r '.nodes.iohkNix.locked.rev') \
Expand Down
4 changes: 2 additions & 2 deletions docker/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ The build can take up to 1.5 hours.

### 2. Run
````
docker run --env-file .\docker\.env.dockerfile -p 8082:8082 -d {image_name}:latest
docker run --env-file ./docker/.env.dockerfile -p 8082:8082 -d {image_name}:latest
````
You need to specify the path to the environment variables file and open the port.

### 3. Changing project settings

All application settings are located in the ``.\docker\.env.dockerfile`` file.
All application settings are located in the ``./docker/.env.dockerfile`` file.
You can specify network, ports, postgres user, etc.

### 4. Changing build parameters
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</licenses>

<properties>
<revision>1.0.0-SNAPSHOT</revision>
<revision>1.0.0</revision>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.spring-boot>3.2.4</version.spring-boot>
Expand Down
2 changes: 1 addition & 1 deletion yaci-indexer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>org.cardanofoundation.rosetta-java</groupId>
<artifactId>yaci-indexer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<name>yaci-indexer</name>
<description>yaci-indexer</description>
<properties>
Expand Down

0 comments on commit b71e335

Please sign in to comment.