Skip to content

Commit

Permalink
Update docker images in integration tests (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
cffls authored May 7, 2023
1 parent e1c636f commit 92bdbac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions integration-test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ networks:
services:

cardano-node:
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.3}
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.7}
entrypoint: bash
environment:
NETWORK: "${NETWORK:-local-alonzo}"
Expand All @@ -32,7 +32,7 @@ services:
max-file: "10"

cardano-pool:
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.3}
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.7}
entrypoint: bash
environment:
NETWORK: "${NETWORK:-local-alonzo}"
Expand All @@ -52,14 +52,14 @@ services:
max-file: "10"

ogmios:
image: cardanosolutions/ogmios:v5.5.5_1.35.3
image: cardanosolutions/ogmios:latest
environment:
NETWORK: "${NETWORK:-local-alonzo}"

command: [
"--host", "0.0.0.0",
"--node-socket", "/ipc/node.socket",
"--node-config", "/code/configs/${NETWORK:-local}/config.json"
"--node-config", "/code/configs/${NETWORK:-local-alonzo}/config.json"
]
volumes:
- .:/code
Expand All @@ -73,13 +73,13 @@ services:
max-file: "10"

kupo:
image: cardanosolutions/kupo:v2.1.0
image: cardanosolutions/kupo:v2.4.0
environment:
NETWORK: "${NETWORK:-local}"

command: [
"--node-socket", "/ipc/node.socket",
"--node-config", "/code/configs/${NETWORK:-local}/config.json",
"--node-config", "/code/configs/${NETWORK:-local-alonzo}/config.json",
"--host", "0.0.0.0",
"--since", "origin",
"--match", "*",
Expand Down
4 changes: 3 additions & 1 deletion integration-test/run_pool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ done
--certificate-file /code/keys/pool/stake.cert \
--certificate-file /code/keys/pool/pool-registration.cert \
--certificate-file /code/keys/pool/delegation.cert \
--witness-override 3
--witness-override 3 \
--invalid-hereafter 100000000000000 \
--alonzo-era

cat tx.raw

Expand Down

0 comments on commit 92bdbac

Please sign in to comment.