postgres:16 being offered 17rc1-bullseye
Closed this issue · 1 comments
fallenleavesgocrunch commented
Hi there. New to WUD. Love it.
I have postgres:16 set up and have no interest in changing it to version 17; however WUD is telling me my 16 branch is out of date suggesting I should upgrade to 17rc1-bullseye.
Is there a setting I can set to make it stick to the branch i've chosen?
fmartinou commented
Hi,
Welcome on board 😃
You can achieve that by playing with wud.tag.include
/ wud.tag.exclude
tags as explained in the doc.
For example,
postgres:
image: postgres:16
labels:
- 'wud.tag.include=^16$$'
If you still want to upgrade minor versions, you can switch to the 16.x tags:
postgres:
image: postgres:16.4
labels:
- 'wud.tag.include=^16\.\d+$$'