systemctl start docker 启动 docker images #查看本地镜像 docker images -a #查看所有的镜像 docker images php #查看仓库名为php的镜像 docker rmi -f 镜像ID #强制删除镜像 docker rmi -f 镜像名 ...
分类:
其他好文 时间:
2021-01-22 12:18:14
阅读次数:
0
实现OS 这个标题给的太大了,只能说实现了几个小的功能而已。 如标题所说,纯裸机,也就是没有任何的字符库,BIOS中断也没有使用,利用时钟中断、键盘中断、BEEP、在200 * 320 像素显示模式下实现了 自己的系统(DOGE) 先来看看效果吧 虽然直接看演示比较直接,但是还是啰嗦一下。 包括4个 ...
分类:
编程语言 时间:
2021-01-21 10:56:24
阅读次数:
0
Problem LeetCode Given a binary search tree with non-negative values, find the minimum absolute difference between values of any two nodes. Example: I ...
分类:
编程语言 时间:
2021-01-21 10:55:51
阅读次数:
0
一、使用docker安装sonatype/nexus3私有maven仓库简介 安装命令根据实际部署情况调整 版本地址:官方镜像主页 | 发布版Tags 最新版本命令: docker pull sonatype/nexus3:latest 指定版本命令: docker pull sonatype/ne ...
分类:
其他好文 时间:
2021-01-21 10:51:38
阅读次数:
0
编写Dockerfile # 使用哪个镜像为基础 FROM nginx # 安装apt-get后清理垃圾文件 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* # 复制文件 COPY index. ...
分类:
其他好文 时间:
2021-01-20 11:55:13
阅读次数:
0
一、运行镜像 docker run -d -p 80:80 vvull/giao:006a 二、本地生成新的镜像(需先构建Dockerfile) docker build -t newImage . 三、启动新的镜像 docker run -d -p 3000:3000 newImage 四、修改项 ...
分类:
其他好文 时间:
2021-01-20 11:53:13
阅读次数:
0
容器生命周期管理 run start/stop/restart kill rm pause/unpause create exec 容器操作 ps inspect top attach events logs wait export port 容器rootfs命令 commit cp diff 镜像 ...
分类:
其他好文 时间:
2021-01-20 11:47:15
阅读次数:
0
作者:HelloGitHub-小鱼干 Twitter 有位程序员总结了本周的 GitHub 中文程序员的看点:国内程序员日常——考公务员、996、抢茅台、刷算法、整健康码。在本期热点速览里,小鱼干收录了考公务员的项目 coder2gwy,它有多受国内程序员欢迎呢?一周 star 获得 8k+,上一次 ...
分类:
其他好文 时间:
2021-01-19 12:25:45
阅读次数:
0
作用 docker start:启动一个或多个已经被停止的容器 docker stop:停止一个或多个运行中的容器 docker restart:重启一个或多个容器 语法格式 docker start [OPTIONS] CONTAINER [CONTAINER...] docker stop [O ...
分类:
其他好文 时间:
2021-01-19 12:15:41
阅读次数:
0
Error while trying to create admin user: Failed to connect to the database: An exception occurred in driver: SQLSTATE[HY000] [1130] Host '172.18.0.2' ...
分类:
其他好文 时间:
2021-01-19 12:03:11
阅读次数:
0