Default registry to docker hub
This commit is contained in:
parent
3bcb24e656
commit
85cc47c9e1
1 changed files with 4 additions and 3 deletions
|
@ -33,8 +33,9 @@ description:
|
|||
options:
|
||||
registry:
|
||||
description:
|
||||
- URL of the registry, for example: https://index.docker.io/v1/
|
||||
required: true
|
||||
- URL of the registry, defaults to: https://index.docker.io/v1/
|
||||
required: false
|
||||
default: https://index.docker.io/v1/
|
||||
username:
|
||||
description:
|
||||
- The username for the registry account
|
||||
|
@ -214,7 +215,7 @@ def main():
|
|||
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
registry = dict(required=True),
|
||||
registry = dict(required=False, default='https://index.docker.io/v1/'),
|
||||
username = dict(required=True),
|
||||
password = dict(required=True),
|
||||
email = dict(required=False, default='anonymous@localhost.local'),
|
||||
|
|
Loading…
Reference in a new issue