mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 07:41:30 -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
|
@ -46,6 +46,7 @@ class EnvironmentConfig(CommonConfig):
|
|||
self.docker_util = docker_qualify_image(args.docker_util if 'docker_util' in args else '') # type: str
|
||||
self.docker_pull = args.docker_pull if 'docker_pull' in args else False # type: bool
|
||||
self.docker_keep_git = args.docker_keep_git if 'docker_keep_git' in args else False # type: bool
|
||||
self.docker_memory = args.docker_memory if 'docker_memory' in args else None
|
||||
|
||||
self.tox_sitepackages = args.tox_sitepackages # type: bool
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue