会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
奔跑的蜗牛
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
6
7
8
9
10
11
12
13
下一页
2019年1月1日
Docker 的基础知识
摘要: 查看docker 正在运行的容器 sudo docker ps | awk '( print $2, $NF )' 查询docker镜像 sudo docker search mysql 下载docker镜像 sudo docker pull mysql 创建并启动容器 sudo docker ru
阅读全文
posted @ 2019-01-01 14:38 信念&坚持✊
阅读(116)
评论(0)
推荐(0)
2018年12月29日
subprocess模块
摘要: subprocess
阅读全文
posted @ 2018-12-29 13:54 信念&坚持✊
阅读(102)
评论(0)
推荐(0)
2018年12月27日
Oracle SQL Developer 连接 MySQL
摘要: 1: Oracle SQL Developer 是非常强悍的开源的SQL开发工具, 可惜最近我才开始研究它, 刚安装好的Oracle SQL Developer 是不支持连接MySQL的, 需要从MySQL官网下载JDBC驱动forMySQL. Oracle SQL Developer官网下载地址:
阅读全文
posted @ 2018-12-27 23:56 信念&坚持✊
阅读(468)
评论(0)
推荐(0)
Ubuntu16.04 搭建Python开发环境
摘要: ubuntu 下载 python解释器 下载 Pycharm 破解 Pycharm
阅读全文
posted @ 2018-12-27 16:27 信念&坚持✊
阅读(187)
评论(0)
推荐(0)
docker镜像批量打包
摘要: docker save $(docker images | grep -v REPOSITORY | awk 'BEGIN{OFS=":";ORS=" "}{print $1,$2}') -o haha.tar
阅读全文
posted @ 2018-12-27 09:01 信念&坚持✊
阅读(276)
评论(0)
推荐(0)
docker-compose 安装方法
摘要: github 项目地址 https://github.com/docker/compose/releases docker-compose 下载链接: 下载完成后把docker-compose-Linux-x68_64 改成 docker-compose sudo mv docker-compose
阅读全文
posted @ 2018-12-27 08:50 信念&坚持✊
阅读(244)
评论(0)
推荐(0)
2018年12月23日
Windows 10 搭建 VS code 开发环境
摘要: 进入 VS code 官网下载安装程序: https://code.visualstudio.com/Download 点击直接下载:https://vscode.cdn.azure.cn/stable/dea8705087adb1b5e5ae1d9123278e178656186a/VSCodeU
阅读全文
posted @ 2018-12-23 00:56 信念&坚持✊
阅读(272)
评论(0)
推荐(0)
2018年12月22日
使用Dockerfile:制作可ssh登录的镜像
摘要: ###### 创建项目目录 mkdir demo cd demo mkdir centos-ssh cd centos-ssh touch Dockerfile tee Dockerfile <<-'EOF' #设置基本的镜像,后续命令都以这个镜像为基础 FROM centos:centos7 #作
阅读全文
posted @ 2018-12-22 23:54 信念&坚持✊
阅读(320)
评论(0)
推荐(0)
Docker 图形化管理工具Portainer.io
摘要: GitHub上的 poratiner部署方式 创建 sudo docker volume create portainer_data sudo docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v por
阅读全文
posted @ 2018-12-22 21:20 信念&坚持✊
阅读(1245)
评论(1)
推荐(1)
2018年12月21日
查看Linux版本
摘要: [TOC] lsb_release a cat /etc/redhat release cat /etc/os release uname –m getconf LONG_BIT 查看系统是32还是64位
阅读全文
posted @ 2018-12-21 09:56 信念&坚持✊
阅读(133)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
下一页
公告