Skip to content

Commit 2982a54

Browse files
authored
Merge pull request #1440 from input-output-hk/jpraynaud/1410-fix-docker-registry-cardano-node
Fix Docker registry for Cardano node
2 parents ffff755 + 8e9f41a commit 2982a54

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-client-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client-cli"
3-
version = "0.5.14"
3+
version = "0.5.15"
44
description = "A Mithril Client"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client-cli/src/commands/snapshot/download.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ impl SnapshotDownloadCommand {
283283
284284
If you are using Cardano Docker image, you can restore a Cardano Node with:
285285
286-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="{}",target=/data/db/ -e NETWORK={} inputoutput/cardano-node:{}
286+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="{}",target=/data/db/ -e NETWORK={} ghcr.io/intersectmbo/cardano-node:{}
287287
288288
"###,
289289
snapshot.digest,

mithril-infra/assets/docker/Dockerfile.cardano

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG CARDANO_IMAGE_ID
2-
FROM inputoutput/cardano-node:$CARDANO_IMAGE_ID
2+
FROM ghcr.io/intersectmbo/cardano-node:$CARDANO_IMAGE_ID
33

44
# Fix env file rights
55
# In order to be able to interact with the Cardano node trough its 'node.socket'

mithril-infra/assets/infra.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4
1+
0.2.5
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.3
1+
0.2.4

mithril-test-lab/mithril-devnet/mkfiles/mkfiles-docker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ for NODE in ${BFT_NODES}; do
1616
HOST=$(cat ${NODE}/host)
1717
cat >> docker-compose.yaml <<EOF
1818
cardano-${NODE}:
19-
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION}
19+
image: ghcr.io/intersectmbo/cardano-node:${CARDANO_NODE_VERSION}
2020
profiles:
2121
- cardano
2222
volumes:
@@ -65,7 +65,7 @@ for NODE in ${POOL_NODES}; do
6565
HOST=$(cat ${NODE}/host)
6666
cat >> docker-compose.yaml <<EOF
6767
cardano-${NODE}:
68-
image: inputoutput/cardano-node:latest
68+
image: ghcr.io/intersectmbo/cardano-node:latest
6969
profiles:
7070
- cardano
7171
volumes:

0 commit comments

Comments
 (0)