File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
packages/e2e/local-network Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -5,16 +5,16 @@ FROM ubuntu:${UBUNTU_VERSION} as builder
55ENV DEBIAN_FRONTEND=nonintercative
66
77WORKDIR /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
99ARG 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
1111RUN 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
3434ARG TINI_VERSION=v0.19.0
3535RUN 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
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ clean() {
1616}
1717trap clean EXIT
1818
19- VERSION=" 9.1.0 "
19+ VERSION=" 9.1.1 "
2020
2121rm -rf bin
2222mkdir -p bin
You can’t perform that action at this time.
0 commit comments