Преглед на файлове

Fix external port config

When exposing a port externally, it seems Docker only actually exposes it
if you specify the *internal* port as `xxxx/tcp`. So add that on if it's
not there.
Aanand Prasad преди 11 години
родител
ревизия
c6e19e34f7
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      fig/service.py

+ 2 - 0
fig/service.py

@@ -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