Ubuntu16.04下部署Oracle docker环境
Docker , Ubuntu / 2018年9月30日

1 安装 docker apt-get install apt-transport-https ca-certificates curl software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - add-apt-repository "deb [ar...

使用nsenter进入docker container
Docker / 2016年12月27日

1 安装 nsenter apt-get install util-linux 2 使用 nsenter cat /home/shell/docker-enter #!/bin/sh if [ -e $(dirname "$0")/nsenter ]; then # with boot2docker, nsenter is not in the PATH but it is in the same...

docker 端口映射错误解决方法
Docker / 2016年8月23日

COMMAND_FAILED: '/sbin/iptables -t nat -A Docker -p tcp -d 0/0 --dport 8111 -j DNAT --to-destination 172.17.0.6:8111 ! -i docker0' failed: iptables: No chain/target/match by that name. pkill docker ip...

Ubuntu 16 Docker 安装使用
Docker , Ubuntu / 2016年8月5日

Ubuntu Docker 安装使用 系统版本:Ubuntu 16.04.1 LTS \n \l 一 安装 Docker 更新APT镜像源 首先需要安装 apt-transport-https 包支持 https 协议的源。 $ sudo apt-get install apt-transport-https ca-certificates sudo apt-get  update #添加 源的 ...