镜像 docker pull *** //拉取镜像 docker images //查看本地镜像 docker run *** //运行镜像(加-d 后台运行) docker rmi *** //删除镜像(加-f可强制删除) docker build -t jpress:latest . //编译镜 ...
分类:
其他好文 时间:
2021-05-24 03:24:25
阅读次数:
0
enum PenStyle { // pen style NoPen, SolidLine, DashLine, DotLine, DashDotLine, DashDotDotLine, CustomDashLine#ifndef Q_MOC_RUN , MPenStyle = 0x0f#endi ...
分类:
其他好文 时间:
2021-05-24 02:17:53
阅读次数:
0
cisco常用配置 常用命令 Switch>En //进入特权模式 Switch#con //进入全局配置模式 Switch(config)#inter vlan 1(默认交换机的所有端口都在VLAN1中)// 创建并进入VLAN 1的接口视图 Switch(config-if)#ip addres ...
分类:
系统相关 时间:
2021-05-24 02:03:54
阅读次数:
0
How do I run a Python script from C#? The reason it isn't working is because you have UseShellExecute = false. If you don't use the shell, you will ha ...
分类:
编程语言 时间:
2021-05-24 01:04:39
阅读次数:
0
1。 调整用例执行顺序 默认按名称顺序执行。安装pip install pytest-ordering, 在测试方法上加装饰器@pytest.mark.last @pytest.mark.run(order=1) 2。遇到错误停止执行 -x 参数 pytest -x -v -s test_01.py ...
分类:
其他好文 时间:
2021-05-24 00:48:43
阅读次数:
0
docker pull nginx:latest docker run -d -p 2002:80 --name abcnginx nginx:latest docker exec -ti abcnginx /bin/bash 然后更新下 apt-get update apt-get install ...
分类:
Web程序 时间:
2021-05-24 00:17:39
阅读次数:
0
官网下载Jenkins https://www.jenkins.io/zh/download/ 构建jenkins镜像 # docker build -t jenkins:2.277.3 . from ubuntu:latest run sed -i 's/ports.ubuntu.com/mirr ...
分类:
其他好文 时间:
2021-05-04 16:25:44
阅读次数:
0
1. 安装 Use docker、package or source installations to install 第三方仓库 https://pkgs.org/download/haproxy 1.1 use docker docker run -it --rm haproxy:2.2 hap ...
分类:
其他好文 时间:
2021-05-04 16:22:39
阅读次数:
0
安装镜像:docker pull 镜像名称 查看所有运行容器:docker ps -a 运行容器:docker run --name 容器名称 进入指定容器:docker exec -it 容器名称 bash 重启容器:docker restart 容器名称 停止所有容器:docker stop $ ...
分类:
其他好文 时间:
2021-05-04 15:53:31
阅读次数:
0
1、【file】==》【settings】==》【build,execution,deployment】==》【compiler】==》勾选【build project automatically】。 2、【ctrl+shift+a】==》【actions】==》【registry】==》勾选【co ...
分类:
其他好文 时间:
2021-05-04 15:26:55
阅读次数:
0