diff options
author | Idan Amit <ia096e@intl.att.com> | 2017-10-26 13:12:13 +0300 |
---|---|---|
committer | Idan Amit <ia096e@intl.att.com> | 2017-10-26 11:09:47 +0000 |
commit | 7d219732a4fd14a301ac01e83c4b0d2c3947e999 (patch) | |
tree | 1c0f505757489f9a9c75df10c294779814155083 | |
parent | 53d2ef7fa03dfb9bd624787604b8b217d1fc2dcf (diff) |
Added authentication for docker in pom
Added the docker credentials in the pom.xml file instead of in the settings.xml
Change-Id: I9a552de5cb5d83342eabc0bb9c1bae7b84dfd2a7
Issue-Id: SDC-524
Signed-off-by: Idan Amit <ia096e@intl.att.com>
-rw-r--r-- | sdc-os-chef/pom.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sdc-os-chef/pom.xml b/sdc-os-chef/pom.xml index 750b3c6bd9..5e72422989 100644 --- a/sdc-os-chef/pom.xml +++ b/sdc-os-chef/pom.xml @@ -336,9 +336,11 @@ <apiVersion>1.23</apiVersion> <registry>nexus3.onap.org:10003</registry> <authConfig> - <username>docker</username> - <password>docker</password> - </authConfig> + <pull> + <username>docker</username> + <password>docker</password> + </pull> + </authConfig> <images> <!-- Build backend image --> |