mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-22 16:03:16 +01:00
#516: allow empty network
This commit is contained in:
parent
4a73ae86bc
commit
f7d335dc6a
@ -7,6 +7,8 @@
|
||||
# https://docs.docker.com/compose/django/
|
||||
# https://docs.docker.com/compose/wordpress/
|
||||
|
||||
# TODO: podman pod logs --color -n -f pod_testlogs
|
||||
|
||||
|
||||
import sys
|
||||
import os
|
||||
@ -775,6 +777,7 @@ def get_net_args(compose, cnt):
|
||||
if cnt_nets and is_dict(cnt_nets):
|
||||
# cnt_nets is {net_key: net_value, ...}
|
||||
for net_value in cnt_nets.values():
|
||||
net_value = net_value or {}
|
||||
aliases.extend(norm_as_list(net_value.get("aliases", None)))
|
||||
if not ip:
|
||||
ip = net_value.get("ipv4_address", None)
|
||||
|
Loading…
Reference in New Issue
Block a user