mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-09 23:00:02 -07:00
Add argument to allow limiting docker container to s specific amount of memory (#37950)
* Add argument to allow limiting docker container to s specific amount of memory * Address review comments
This commit is contained in:
parent
2d0547c411
commit
5d90ebb28e
3 changed files with 10 additions and 0 deletions
|
@ -605,6 +605,9 @@ def add_extra_docker_options(parser, integration=True):
|
|||
action='store_true',
|
||||
help='run docker container in privileged mode')
|
||||
|
||||
docker.add_argument('--docker-memory',
|
||||
help='memory limit for docker in bytes', type=int)
|
||||
|
||||
|
||||
def complete_target(prefix, parsed_args, **_):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue