Docker Tutorial Basic Docker Commands pull an image docker pull {image name}:{image version} list all docker images docker image ls -a create and run ...
分类:
其他好文 时间:
2021-06-02 15:27:12
阅读次数:
0
https://docs.docker.com/engine/install/ubuntu/ Set up the repository apt-get update apt-get install \ apt-transport-https \ ca-certificates \ curl \ g ...
分类:
其他好文 时间:
2021-06-02 15:16:09
阅读次数:
0
kotlin code: fun go(r: Runnable) = r.run() //fun fGo(f: () -> Unit) = go(f) fun main() { val g: () -> Unit = { println("what")} go(g) } equivalent jav ...
分类:
其他好文 时间:
2021-06-02 15:03:35
阅读次数:
0
#一、Hybrid接口 ##1.1 VLan的基本概念 特点: 隔离广播 方便管理 提高安全 Vlan接口: Access接口 Trunk接口 Trunk封装 : isl dot1q ##1.2 Hybrid接口特点 特点: 1.华为交换机接口默认为Hybrid模式 2.既可以实现Access接口的 ...
分类:
其他好文 时间:
2021-06-02 13:24:34
阅读次数:
0
创建线程 1.继承Thread类,重写run()方法 public class ThreadCreateDemo1 { public static void main(String[] args) { MyThread thread = new MyThread(); thread.start(); ...
分类:
编程语言 时间:
2021-06-02 12:39:26
阅读次数:
0
错误描述:使用pip 安装python库报错Unknown or unsupported command 'install' 错误原因:最近在学习软件测试,安装了loadrunner这个测试软件,导致系统无法识别到底应该使用哪个pip(loadrunner 也自带pip 安装工具) 解决方法: 第一 ...
分类:
编程语言 时间:
2021-06-02 12:10:16
阅读次数:
0
在运行vue项目时,有时会报这样的错: 然后我们就会想以前也用的是这个命令,为什么这次会报错,这时我们就需要去看看自己或是别人改了 package.json 这个文件的配置: 找到文件中的scripts中的这个配置: "scripts": { "serve": "vue-cli-service se ...
分类:
其他好文 时间:
2021-06-02 11:08:21
阅读次数:
0
GeoWebCache is a Java web application used to cache map tiles coming from a variety of sources such as OGC Web Map Service (WMS). It implements variou ...
分类:
Web程序 时间:
2021-06-02 10:58:05
阅读次数:
0
1、查看详细的使用 docker system df -v 2、查看docker目录大小 du -hs /var/lib/docker/ 3、清理磁盘,删除关闭的容器、无用的数据卷和网络 docker system prune docker system prune -a 清理的更彻底 ...
分类:
其他好文 时间:
2021-05-25 18:43:04
阅读次数:
0
问题:我打算编写一个dockerfile,其主要是部署一个springboot项目。当dockerfile构建完镜像,使用docker run 的时候报错。 Dockerfile内容 # jdk16是我自己构建的基于centos的java环境 FROM jdk16:16.0.1 MAINTAINER ...
分类:
移动开发 时间:
2021-05-25 18:34:11
阅读次数:
0