Changes between Version 42 and Version 43 of linux/docker


Ignore:
Timestamp:
2016/07/04 10:55:45 (8 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/docker

    v42 v43  
    573573   registry.access.redhat.com/rhel /bin/sh 
    574574}}} 
     575 
     576== ユーザりマッピング 
     577 
     578ユーザネームスペースの機能を利用して、コンテナのユーザをホストの特定ユーザにマッピングする。 
     579 
     580ユーザネームスペースを有効にする。 
     581 
     582{{{ 
     583# grubby --args=user_namespace.enable=1 --update-kernel=/boot/vmlinuz-3.10.0-327.el7.x86_64 
     584# shutdown -r now 
     585}}} 
     586 
     587{{{ 
     588# adduser dockremap 
     589# echo "dockremap:500000:65536 > /etc/subuid 
     590# echo "dockremap:500000:65536 > /etc/subgid 
     591}}} 
     592 
     593 
     594/etc/systemd/system/multi-user.target.wants/docker.service 
     595{{{ 
     596ExecStart=/usr/bin/dockerd --userns-remap=default -D -H fd:// 
     597}}} 
     598 
     599{{{ 
     600# systemctl daemon-reload 
     601# systemctl restart docker.serivce 
     602}}}