Skip to content

Commit d3c44f6

Browse files
Merge pull request #1466 from input-output-hk/update-explorer-docker-compose
Update hydra-explorer version and start-chain-from
2 parents aa4c887 + 503ffca commit d3c44f6

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/explorer/docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
restart: always
1818

1919
hydra-explorer:
20-
image: ghcr.io/input-output-hk/hydra-explorer:unstable
20+
image: ghcr.io/input-output-hk/hydra-explorer:0.17.0
2121
volumes:
2222
- /srv/var/cardano/state-preview:/data
2323
ports:
@@ -27,6 +27,6 @@ services:
2727
, "--testnet-magic", "2"
2828
, "--api-port", "8080"
2929
# NOTE: Block in which current master scripts were published
30-
, "--start-chain-from", "45386581.4a362bfca7cf840575c17b6cbb531588bc8e907beb5a6a28890877fb16be1cd3"
30+
, "--start-chain-from", "49533501.e364500a42220ea47314215679b7e42e9bbb81fa69d1366fe738d8aef900f7ee"
3131
]
3232
restart: always

release.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ prepare_release() {
6161
update_api_version "$version"
6262
update_demo_version "$version"
6363
update_tutorial_version "$version"
64+
update_explorer_version "$version"
6465

6566
find . -name '*-e' -exec rm '{}' \; # cleanup BSD sed mess
6667

@@ -191,6 +192,14 @@ update_demo_version() {
191192
)
192193
}
193194

195+
update_explorer_version() {
196+
local version="$1"
197+
(
198+
cd .github/workflows/explorer
199+
sed -i"" -e "s,\(ghcr.io/input-output-hk/hydra-[^:]*\):[^[:space:]]*,\1:$version," docker-compose.yaml
200+
)
201+
}
202+
194203
changelog() {
195204
local version="$1"
196205
sed -e '/^## *\['"$version"'\]/ , /^## *\[.*\]/ !d' CHANGELOG.md | sed '$d' | sed -e 's/^\#* //'

0 commit comments

Comments
 (0)