Changes between Version 26 and Version 27 of linux/docker


Ignore:
Timestamp:
2015/08/22 21:34:25 (9 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/docker

    v26 v27  
    249249 
    250250修正後、dockerサービスを開始し、コンテナをstartすると変更したコマンドでコンテナが起動されます。 
     251 
     252ネットワークの設定は、config.jsonとhostconfig.jsonに記載されています。例えば、コンテナの80をホストの18080に設定する例(docker run --expose 18080 -p 18080:80の例) 
     253 
     254config.json 
     255{{{ 
     256"ExposedPorts":{"18080/tcp":{},"80/tcp":{}}, 
     257}}} 
     258 
     259hostconfig.json 
     260{{{ 
     261"PortBindings":{"80/tcp":[{"HostIp":"","HostPort":"18080"}]} 
     262}}}