一、帮助命令 获取版本信息:docker version 获取docker详细信息:docker info 命令使用帮助查询:docker --help 二、镜像命令 1、列出本地镜像:docker images2、查找镜像: docker search 某个***镜像名字 3、下载镜像:docke ...
分类:
其他好文 时间:
2020-06-29 10:03:10
阅读次数:
57
man docker NAME docker - Docker image and container command line interface SYNOPSIS docker [OPTIONS] COMMAND [ARG...] docker [--help|-v|--version] DES... ...
分类:
其他好文 时间:
2020-06-29 00:10:32
阅读次数:
47
1、cobbler check失败 httpd does not appear to be running and proxying cobbler, or SELinux is in the way. Original traceback: Traceback (most recent call ...
分类:
其他好文 时间:
2020-06-28 22:55:20
阅读次数:
118
因日志产生多了,或者数据多了,导致硬盘满了,没及时清理。 elasticsearch 在程序连接后,提示无法连接问题。 解决: 1、清理掉多余日志。或文件信息。 2、修改索引,让其能够重新写入。 其中: 索引名称 china_index 用户名密码 ,没有的情况下可以不写 -u elastic:el ...
这篇文章会尽量以通俗易懂的方式描述iptables的相关概念,请耐心的读完它。 防火墙相关概念 此处先描述一些相关概念。 从逻辑上讲。防火墙可以大体分为主机防火墙和网络防火墙。 主机防火墙:针对于单个主机进行防护。 网络防火墙:往往处于网络入口或边缘,针对于网络入口进行防护,服务于防火墙背后的本地局 ...
分类:
其他好文 时间:
2020-06-28 20:24:46
阅读次数:
37
之前分享了基于LiteOS的智慧农业案例实验分享基于LiteOS的智慧农业案例实验分享,阅读量挺不错,看样子大家都挺喜欢这种实验。那咱们就再来一个类似的实验:基于RT-Thread的智慧路灯案例实验。 实验框图 实验说明:设备终端不断采集光强数据并上传至云端进行监控,同时也会把当前LED(路灯)的状 ...
分类:
其他好文 时间:
2020-06-28 13:13:09
阅读次数:
173
一、脚本 #!/bin/bash #**************************************************** #Date: 2020-06-28 #Author: Damon Ye #FileName: UpTimeMonitor.sh #Description:Th ...
分类:
其他好文 时间:
2020-06-28 12:45:16
阅读次数:
74
运行这段代码 import torch import numpy as np import matplotlib.pyplot as plt x = torch.ones(2,2,requires_grad=True) print('x:\n',x) y = torch.eye(2,2,requir ...
分类:
其他好文 时间:
2020-06-28 09:56:40
阅读次数:
254
Reverse Vowels of a String (E) 题目 Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Input: "hello" Out ...
分类:
其他好文 时间:
2020-06-28 09:27:54
阅读次数:
41
def calc(n): print(n) if int(n / 2) == 0: # 10/2 5/2 2/2 return n res=calc(int(n / 2)) return res calc(10) ####打印结果 10 5 2 1 ######################### ...
分类:
编程语言 时间:
2020-06-28 00:22:12
阅读次数:
96