码迷,mamicode.com
首页 > 其他好文 > 详细

Docker容器的特权模式介绍

时间:2020-01-30 14:31:56      阅读:489      评论:0      收藏:0      [点我收藏+]

标签:进入   删除   not   安装   docke   net   成功   ash   启动   

  • 启动一个普通的容器
    • docker run -itd --name centos centos:7
  • 安装网络工具
    • yum install -y net-tools
  • 执行route -n
  • 删除网关
    • route del default gw 172.17.0.2
    • 删除失败:SIOCDELRT: Operation not permitted
  • 启动拥有特权模式的容器
    • docker run -itd --privileged=true --name mycentos1 centos:7
  • 进入容器
    • docker exec -it 容器id /bin/bash
  • 删除网关
    • route del default gw 172.17.0.2
    • 删除成功

备注:特权模式使用较少

Docker容器的特权模式介绍

标签:进入   删除   not   安装   docke   net   成功   ash   启动   

原文地址:https://www.cnblogs.com/weisunblog/p/12242466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!