Skip to content

Commit

Permalink
Fix hydra-node demo versions to use unstable
Browse files Browse the repository at this point in the history
something went wrong during our release and now they point to a version which haven't been published yet
  • Loading branch information
ffakenz authored and locallycompact committed Oct 20, 2023
1 parent 292addd commit 928bb71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions demo/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:

hydra-node-1:
# NOTE: Make sure to use the same image in ./seed-devnet.sh
image: ghcr.io/input-output-hk/hydra-node:0.14.0
image: ghcr.io/input-output-hk/hydra-node:unstable
build:
context: ../
target: hydra-node
Expand Down Expand Up @@ -60,7 +60,7 @@ services:

hydra-node-2:
# NOTE: Make sure to use the same image in ./seed-devnet.sh
image: ghcr.io/input-output-hk/hydra-node:0.14.0
image: ghcr.io/input-output-hk/hydra-node:unstable
build:
context: ../
target: hydra-node
Expand Down Expand Up @@ -97,7 +97,7 @@ services:

hydra-node-3:
# NOTE: Make sure to use the same image in ./seed-devnet.sh
image: ghcr.io/input-output-hk/hydra-node:0.14.0
image: ghcr.io/input-output-hk/hydra-node:unstable
build:
context: ../
target: hydra-node
Expand Down Expand Up @@ -133,7 +133,7 @@ services:
restart: always

hydra-tui-1:
image: ghcr.io/input-output-hk/hydra-tui:0.14.0
image: ghcr.io/input-output-hk/hydra-tui:unstable
build:
context: ../
target: hydra-tui
Expand All @@ -152,7 +152,7 @@ services:
ipv4_address: 172.16.238.11

hydra-tui-2:
image: ghcr.io/input-output-hk/hydra-tui:0.14.0
image: ghcr.io/input-output-hk/hydra-tui:unstable
build:
context: ../
target: hydra-tui
Expand All @@ -171,7 +171,7 @@ services:
ipv4_address: 172.16.238.21

hydra-tui-3:
image: ghcr.io/input-output-hk/hydra-tui:0.14.0
image: ghcr.io/input-output-hk/hydra-tui:unstable
build:
context: ../
target: hydra-tui
Expand Down
2 changes: 1 addition & 1 deletion demo/seed-devnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function hnode() {
docker run --rm -it \
--pull always \
-v ${SCRIPT_DIR}/devnet:/devnet \
ghcr.io/input-output-hk/hydra-node:0.14.0 -- ${@}
ghcr.io/input-output-hk/hydra-node:unstable -- ${@}
fi
}

Expand Down

0 comments on commit 928bb71

Please sign in to comment.