Exposing tcp and udp for same port fails. Fixes issue #4354.

This commit is contained in:
chouseknecht 2016-08-17 16:54:39 -04:00
parent 8da5e2cb88
commit 95f69c55fa

View file

@ -1012,7 +1012,8 @@ class TaskParameters(DockerBaseClass):
protocol = 'tcp'
match = re.search(r'(/.+$)', port)
if match:
protocol = match.group(1)
protocol = match.group(1).replace('/', '')
port = re.sub(r'/.+$', '', port)
exposed.append((port, protocol))
if published_ports:
# Any published port should also be exposed