Skip to content

Commit

Permalink
Merge #1938
Browse files Browse the repository at this point in the history
1938: docker: Make latest point to latest shelley image r=rvl a=rvl

### Issue Number

ADP-356

### Overview

Make docker latest tag point to latest shelley image.

The shelley backend will work on both networks, and the byron backend will be deleted soon.

### Comments

- [Docker](https://github.com/input-output-hk/cardano-wallet/wiki/Docker) page on wiki updated.


Co-authored-by: Rodney Lorrimar <[email protected]>
  • Loading branch information
iohk-bors[bot] and rvl authored Jul 24, 2020
2 parents 4cd4397 + 1b9353e commit 05db647
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .buildkite/docker-build-push.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
# 3. After pushing the image to the repo, the "latest" tags are updated.
#
# - "inputoutput/cardano-wallet:latest" should point to the most
# recent VERSION-byron tag build.
# recent VERSION-shelley tag build.
# - "inputoutput/cardano-wallet:byron" should point to the most
# recent VERSION-byron tag build.
# - "inputoutput/cardano-wallet:shelley" should point to the most
# recent VERSION-shelley tag build.
# - "inputoutput/cardano-wallet:jormungandr" should point to the most
# recent VERSION-jormungandr tag build.
#
Expand Down Expand Up @@ -78,7 +80,7 @@ in
if [[ "$git_tag" =~ ^v20 ]]; then
tags+=( "${image.imageTag}" )
tags+=( "${image.backend}" )
${optionalString (image.backend == "byron") ''
${optionalString (image.backend == "shelley") ''
tags+=( "latest" )
''}
elif [[ "$git_branch" = master ]]; then
Expand Down

0 comments on commit 05db647

Please sign in to comment.