Skip to content
Snippets Groups Projects
Commit f326dac0 authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

Merge branch 'clement.bois-master-patch-01430' into 'master'

fix(doc): typo in extra tags

Closes #67

See merge request to-be-continuous/docker!99
parents f134eec3 4a18e207
Branches
No related tags found
No related merge requests found
...@@ -435,7 +435,7 @@ When publishing the _release_ image, the Docker template might publish it again ...@@ -435,7 +435,7 @@ When publishing the _release_ image, the Docker template might publish it again
* `$DOCKER_RELEASE_EXTRA_TAGS_PATTERN` supports capturing groups: * `$DOCKER_RELEASE_EXTRA_TAGS_PATTERN` supports capturing groups:
* `v([0-9]+)\.([0-9]+)\.([0-9]+)` has 3 (unnamed) capturing groups, each capturing any number of digits * `v([0-9]+)\.([0-9]+)\.([0-9]+)` has 3 (unnamed) capturing groups, each capturing any number of digits
* `v(P<major>[0-9]+)\.(P<minor>[0-9]+)\.(P<patch>[0-9]+)` has 3 **named** capturing groups (_major_, _minor_ and _patch_), each capturing any number of digits * `v(?<major>[0-9]+)\.(?<minor>[0-9]+)\.(?<patch>[0-9]+)` has 3 **named** capturing groups (_major_, _minor_ and _patch_), each capturing any number of digits
* `$DOCKER_RELEASE_EXTRA_TAGS` supports capturing group references from `$DOCKER_RELEASE_EXTRA_TAGS_PATTERN`: * `$DOCKER_RELEASE_EXTRA_TAGS` supports capturing group references from `$DOCKER_RELEASE_EXTRA_TAGS_PATTERN`:
* `\g1` is a reference to capturing group number 1 * `\g1` is a reference to capturing group number 1
* `\g<major>` is a reference to capturing group named _major_ * `\g<major>` is a reference to capturing group named _major_
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment