Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix bad docker image names in documentation
  • Loading branch information
harbu authored Mar 5, 2024
1 parent dc1c554 commit 4a66c72
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,18 +211,18 @@ To update `latest` do the following.
1. Remove potentially existing latest tag _locally_ with `docker manifest rm streamr/node:latest`

1. Find out the sha256 digests of both the amd64 and arm64 builds for a `vX.Y.Z` tag. This can be
done via command-line `docker buildx imagetools inspect stream/node:vX.Y.Z` or you can check
this from docker hub website under https://hub.docker.com/r/stream/node/tags.
done via command-line `docker buildx imagetools inspect streamr/node:vX.Y.Z` or you can check
this from docker hub website under https://hub.docker.com/r/streamr/node/tags.
2. Then we shall create the manifest by running the below. Remember to replace `<SHA-AMD64>` and `<SHA-ARM64>`
with real values.
```
docker manifest create stream/node:latest \
--amend stream/node@sha256:<SHA-AMD64> \
--amend stream/node@sha256:<SHA-ARM64>
docker manifest create streamr/node:latest \
--amend streamr/node@sha256:<SHA-AMD64> \
--amend streamr/node@sha256:<SHA-ARM64>
```
3. Then we publish the manifest with
```
docker manifest push stream/node:latest
docker manifest push streamr/node:latest
```
4. Then we are ready. It would be wise to double-check this by checking
https://hub.docker.com/r/stream/node/tags.
https://hub.docker.com/r/streamr/node/tags.

0 comments on commit 4a66c72

Please sign in to comment.