mirror of
https://github.com/docker/compose.git
synced 2025-07-16 10:14:24 +02:00
Merge pull request #29 from orchardup/fix-external-port-config
Fix external port config
This commit is contained in:
commit
4c72598e68
@ -224,6 +224,8 @@ class Service(object):
|
||||
port = str(port)
|
||||
if ':' in port:
|
||||
port = port.split(':')[-1]
|
||||
if '/' not in port:
|
||||
port = "%s/tcp" % port
|
||||
ports.append(port)
|
||||
container_options['ports'] = ports
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user