Add image tag dropdown for publish to docker in ADS (#21029)

* add image tag dropdown to publish dialog

* cleanup

* add filtering and move default tag to the first in the dropdown

* fix test
This commit is contained in:
Kim Santiago
2022-10-31 18:02:03 -07:00
committed by GitHub
parent 0ac83852c7
commit bd7d44ad31
3 changed files with 53 additions and 21 deletions

View File

@@ -194,6 +194,7 @@ export function invalidSQLPasswordMessage(name: string) { return localize('inval
export function passwordNotMatch(name: string) { return localize('passwordNotMatch', "{0} password doesn't match the confirmation password", name); }
export const portMustBeNumber = localize('portMustNotBeNumber', "Port must a be number");
export const valueCannotBeEmpty = localize('valueCannotBeEmpty', "Value cannot be empty");
export const imageTag = localize('imageTag', "Image tag");
export const dockerImageLabelPrefix = 'source=sqldbproject';
export const dockerImageNamePrefix = 'sqldbproject';
export const dockerImageDefaultTag = 'latest';