mirror of https://github.com/docker/compose.git
Add ipam default driver, fixes #5248
Signed-off-by: Drew Romanyk <drewiswaycool@gmail.com>
This commit is contained in:
parent
d48002a09d
commit
60f818e548
|
@ -116,7 +116,7 @@ def create_ipam_config_from_dict(ipam_dict):
|
|||
return None
|
||||
|
||||
return IPAMConfig(
|
||||
driver=ipam_dict.get('driver'),
|
||||
driver=ipam_dict.get('driver') or 'default',
|
||||
pool_configs=[
|
||||
IPAMPool(
|
||||
subnet=config.get('subnet'),
|
||||
|
|
Loading…
Reference in New Issue