Skip to content

Update docker images in integration tests #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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