Skip to content

Commit

Permalink
Merge pull request #523 from etclabscore/docs/docker-hub-tag-reformat
Browse files Browse the repository at this point in the history
docs/getting-started: draft deprecation notice for docker hub tag format
  • Loading branch information
meowsbits authored Feb 2, 2023
2 parents eafc6aa + e386c6b commit 995294b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,20 @@ $ docker pull etclabscore/core-geth:latest

#### Image: `<tag>`

Repository tags like `v1.2.3` correspond to Docker tags like __`version-1.2.3`__.
##### `version-X.Y.Z` Deprecation Notice (2023-01-31)

tl;dr: Use `etclabscore/core-geth:v1.12.9` instead of `etclabscore/core-geth:version-1.12.9`.

~~Repository tags like `v1.2.3` correspond to Docker tags like __`version-1.2.3`__.~~

__Update (2023-01-31)__

Docker Hub tags are now formatted as __`v1.2.3`__, corresponding exactly with the repository tag (eg. `v1.2.3`).
The previous format (`version-X.Y.Z`) will be supported through `version-1.12.11` (=`v1.12.11`), but will be discontinued after that.

!!! Example

```shell
$ docker pull etclabscore/core-geth:version-1.11.1
$ docker pull etclabscore/core-geth:v1.12.9 # <-- all versions from 1.12.9 and later use this format
$ docker pull etclabscore/core-geth:version-1.11.1 # <-- all versions from 1.12.8 and earlier use this format
```

0 comments on commit 995294b

Please sign in to comment.