Skip to content

Commit e277c72

Browse files
authored
Merge pull request #1478 from input-output-hk/chore/LW-11501-bump-dependencies
LW-11501 Bump cardano-node to v9.1.1 and db-sync to v13.5.0.1
2 parents ac342e8 + a47d134 commit e277c72

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

compose/common.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ services:
123123
depends_on:
124124
ogmios:
125125
condition: service_healthy
126-
image: ghcr.io/intersectmbo/cardano-db-sync:${CARDANO_DB_SYNC_VERSION:-13.3.0.0}
126+
image: ghcr.io/intersectmbo/cardano-db-sync:${CARDANO_DB_SYNC_VERSION:-13.5.0.1}
127127
restart: on-failure
128128
stop_signal: SIGINT
129129
volumes:
@@ -134,7 +134,7 @@ services:
134134
<<:
135135
- *logging
136136
- *with-postgres
137-
image: ghcr.io/intersectmbo/cardano-smash-server:${CARDANO_DB_SYNC_VERSION:-13.3.0.0}
137+
image: ghcr.io/intersectmbo/cardano-smash-server:${CARDANO_DB_SYNC_VERSION:-13.5.0.1}
138138
command: ['--config', '/config/cardano-db-sync/config.json']
139139
environment:
140140
POSTGRES_HOST: postgres
@@ -155,7 +155,7 @@ services:
155155

156156
cardano-node:
157157
<<: *logging
158-
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-9.1.0}
158+
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION:-9.1.1}
159159
command:
160160
[
161161
'run',
@@ -201,7 +201,7 @@ services:
201201

202202
cardano-submit-api:
203203
command: --config /config/cardano-submit-api/config.json --listen-address 0.0.0.0 --socket-path /ipc/node.socket $SUBMIT_API_ARGS
204-
image: ghcr.io/intersectmbo/cardano-submit-api:${CARDANO_NODE_VERSION:-9.1.0}
204+
image: ghcr.io/intersectmbo/cardano-submit-api:${CARDANO_NODE_VERSION:-9.1.1}
205205
ports:
206206
- 8090:8090
207207
restart: on-failure

packages/e2e/local-network/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ FROM ubuntu:${UBUNTU_VERSION} as builder
55
ENV DEBIAN_FRONTEND=nonintercative
66

77
WORKDIR /build
8-
ARG CARDANO_NODE_BUILD_URL=https://github.com/IntersectMBO/cardano-node/releases/download/9.1.0/cardano-node-9.1.0-linux.tar.gz
8+
ARG CARDANO_NODE_BUILD_URL=https://github.com/IntersectMBO/cardano-node/releases/download/9.1.1/cardano-node-9.1.1-linux.tar.gz
99
ARG CARDANO_NODE_BUILD_URL_ARM64=https://github.com/input-output-hk/ogmios-tracker/releases/download/0.1.0/cardano-node-9.1.0-aarch64-linux.tar.gz
1010

1111
RUN set -x && \
1212
apt-get update -y && \
1313
apt-get install -y wget tar curl unzip && \
1414
if [ "$(uname -m)" = "aarch64" ] ; then \
15-
curl -fsSL "$CARDANO_NODE_BUILD_URL_ARM64" >cardano-node.tar.gz ;\
16-
else \
17-
curl -fsSL "$CARDANO_NODE_BUILD_URL" >cardano-node.tar.gz ;\
15+
curl -fsSL "$CARDANO_NODE_BUILD_URL_ARM64" >cardano-node.tar.gz ; \
16+
else \
17+
curl -fsSL "$CARDANO_NODE_BUILD_URL" >cardano-node.tar.gz ; \
1818
fi && \
1919
mkdir -p cardano-node && \
2020
tar -xzf cardano-node.tar.gz -C cardano-node
@@ -34,9 +34,9 @@ COPY --from=builder /build/cardano-node /opt/cardano-node
3434
ARG TINI_VERSION=v0.19.0
3535
RUN mkdir -p ./bin && ln -s /opt/cardano-node/bin/* ./bin/ &&\
3636
if [ "$(uname -m)" = "aarch64" ] ; then \
37-
TINI_VARIANT=static-arm64 ;\
37+
TINI_VARIANT=static-arm64 ;\
3838
else \
39-
TINI_VARIANT=static-amd64 ;\
39+
TINI_VARIANT=static-amd64 ;\
4040
fi &&\
4141
curl -fsSL >/tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TINI_VARIANT} &&\
4242
chmod +x /tini

packages/e2e/local-network/scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ clean() {
1616
}
1717
trap clean EXIT
1818

19-
VERSION="9.1.0"
19+
VERSION="9.1.1"
2020

2121
rm -rf bin
2222
mkdir -p bin

0 commit comments

Comments
 (0)