2016年10月19日

查看指定docker container的启动命令

摘要: 使用开源的runlike工具: $ pip install runlike # run the ubuntu image $ docker run -ti ubuntu bash $ docker ps -a # suppose you get the container ID 1dfff2ba02 阅读全文

posted @ 2016-10-19 14:57 傻子才悲伤 阅读(2624) 评论(0) 推荐(0) 编辑

2016年9月29日

docker0: iptables: No chain/target/match by that name

摘要: 在CentOS 7下使用类似nginx之类的web server,启动docker时有时会报以下错误: docker0: iptables: No chain/target/match by that name. 解决方法: service docker restart 重启docker后: ipt 阅读全文

posted @ 2016-09-29 13:49 傻子才悲伤 阅读(9759) 评论(0) 推荐(0) 编辑

2016年9月28日

Gitlab CE Docker Image Too Large to Push

摘要: 客户端上传时候显示错误: unauthorized: authentication required 显示错误为: Sep 28 22:12:55 docker4 dockerd: time="2016-09-28T22:12:55.510621993+08:00" level=error msg= 阅读全文

posted @ 2016-09-28 22:40 傻子才悲伤 阅读(751) 评论(0) 推荐(0) 编辑

2016年9月26日

dockerhub unauthorized: authentication required

摘要: 上传image时出现错误信息: dockerhub unauthorized: authentication required docker login hub.docker.com 不可以, 需要使用https模式登录: docker login https://hub.docker.com或者直 阅读全文

posted @ 2016-09-26 18:50 傻子才悲伤 阅读(11740) 评论(0) 推荐(0) 编辑

Git linux下保存密码方法

摘要: vi ~/.git-credentials 输入以下内容: https://{username}:{password}@github.com 执行命令 git config --global credential.helper store vi ~/.gitconfig,末尾添加了一项: [cred 阅读全文

posted @ 2016-09-26 18:31 傻子才悲伤 阅读(429) 评论(0) 推荐(0) 编辑

CentOS7 maven Unsupported major.minor version 52.0

摘要: pom.xml含有以下: <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> 阅读全文

posted @ 2016-09-26 11:19 傻子才悲伤 阅读(881) 评论(0) 推荐(0) 编辑

2016年9月21日

firewalld命令

摘要: 1.添加x.x.x.x/24到80端口白名单: firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="x.x.x.x/24" port port="80" protocol="tcp" accept' 阅读全文

posted @ 2016-09-21 11:40 傻子才悲伤 阅读(303) 评论(0) 推荐(0) 编辑

2016年9月14日

【Ansible】learning note

摘要: from: http://docs.ansible.com/ansible/intro_getting_started.html Any management system benefits from being run near the machines being managed. 阅读全文

posted @ 2016-09-14 18:04 傻子才悲伤 阅读(141) 评论(0) 推荐(0) 编辑

Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7

摘要: CentOS7安装任何软件,比如 yum -y install ansible 出现错误信息: Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 名词解释: EPEL:extra packages for enterprise linux. 阅读全文

posted @ 2016-09-14 17:59 傻子才悲伤 阅读(3077) 评论(0) 推荐(0) 编辑

2016年9月6日

CentOS 7安装升级最新版本docker-engine

摘要: 注意: 要安装的是docker-engine,不是docker。 下载https://github.com/flasheryu/mirrors 此repo里面的yum.repos.d目录并代替CentOS系统的/etc/yum.repos.d目录。 注意备份原/etc/yum.repos.d目录到/ 阅读全文

posted @ 2016-09-06 18:04 傻子才悲伤 阅读(697) 评论(0) 推荐(0) 编辑

导航