Skip to content

Commit 92bdbac

Browse files
authored
Update docker images in integration tests (#234)
1 parent e1c636f commit 92bdbac

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

integration-test/docker-compose.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ networks:
99
services:
1010

1111
cardano-node:
12-
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.3}
12+
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.7}
1313
entrypoint: bash
1414
environment:
1515
NETWORK: "${NETWORK:-local-alonzo}"
@@ -32,7 +32,7 @@ services:
3232
max-file: "10"
3333

3434
cardano-pool:
35-
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.3}
35+
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.35.7}
3636
entrypoint: bash
3737
environment:
3838
NETWORK: "${NETWORK:-local-alonzo}"
@@ -52,14 +52,14 @@ services:
5252
max-file: "10"
5353

5454
ogmios:
55-
image: cardanosolutions/ogmios:v5.5.5_1.35.3
55+
image: cardanosolutions/ogmios:latest
5656
environment:
5757
NETWORK: "${NETWORK:-local-alonzo}"
5858

5959
command: [
6060
"--host", "0.0.0.0",
6161
"--node-socket", "/ipc/node.socket",
62-
"--node-config", "/code/configs/${NETWORK:-local}/config.json"
62+
"--node-config", "/code/configs/${NETWORK:-local-alonzo}/config.json"
6363
]
6464
volumes:
6565
- .:/code
@@ -73,13 +73,13 @@ services:
7373
max-file: "10"
7474

7575
kupo:
76-
image: cardanosolutions/kupo:v2.1.0
76+
image: cardanosolutions/kupo:v2.4.0
7777
environment:
7878
NETWORK: "${NETWORK:-local}"
7979

8080
command: [
8181
"--node-socket", "/ipc/node.socket",
82-
"--node-config", "/code/configs/${NETWORK:-local}/config.json",
82+
"--node-config", "/code/configs/${NETWORK:-local-alonzo}/config.json",
8383
"--host", "0.0.0.0",
8484
"--since", "origin",
8585
"--match", "*",

integration-test/run_pool.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ done
2121
--certificate-file /code/keys/pool/stake.cert \
2222
--certificate-file /code/keys/pool/pool-registration.cert \
2323
--certificate-file /code/keys/pool/delegation.cert \
24-
--witness-override 3
24+
--witness-override 3 \
25+
--invalid-hereafter 100000000000000 \
26+
--alonzo-era
2527

2628
cat tx.raw
2729

0 commit comments

Comments
 (0)