摘要: Docker run命令: --add-host list Add a custom host-to-IP mapping 添加一个host 到 ip 的映射 docker run -it --add-host hostname1:192.168.1.2 --add-host hostname2:1 阅读全文
posted @ 2023-02-12 20:28 菜阿 阅读(68) 评论(0) 推荐(0)
摘要: docker volume [root@localhost128 home]# docker volume --help Usage: docker volume COMMAND Manage volumes Commands: ## 创建一个容器卷 create Create a volume # 阅读全文
posted @ 2023-02-12 20:28 菜阿 阅读(55) 评论(0) 推荐(0)
摘要: 安装Docker-Compose: 官方文档 安装 curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bi 阅读全文
posted @ 2023-02-12 20:27 菜阿 阅读(119) 评论(0) 推荐(0)
摘要: Dockerd Configuration [root@localhost128 docker]# dockerd --help Usage: dockerd [OPTIONS] A self-sufficient runtime for containers. Options: --add-run 阅读全文
posted @ 2023-02-12 20:27 菜阿 阅读(153) 评论(0) 推荐(0)
摘要: Dockerfile FROM FROM [--platform=<platform>] <image> [AS <name>] FROM [--platform=<platform>] <image>[:<tag>] [AS <name>] FROM [--platform=<platform>] 阅读全文
posted @ 2023-02-12 20:27 菜阿 阅读(179) 评论(0) 推荐(0)
摘要: Git Init 名称 git-init- 语法(概要) git init [-q | --quiet] [--bare] [--template=<template-directory>] [--separate-git-dir <git-dir>] [--object-format=<forma 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(305) 评论(0) 推荐(0)
摘要: Wsl2安装CentOS7 (或任何你想安装的Linux发行版) 前提条件:安装了虚拟机,且安装好了Docker 找到你想要的CentOS版本 CentOS的DockerHub地址 下载docker镜像(我这里是因为已经下载好了,所以显示的结果是这样) [root@localhost128 ~]# 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(560) 评论(0) 推荐(0)
摘要: 软件安装: | 目录 | 作用 | | | | | /usr | 系统级目录。可理解为C:/Windows/,/usr/lib: 可理解为 C:/Windows/System32。 | | /usr/local | 用户级的程序目录。可理解为 C:/Progrem Files/。用户自己编译的软件默 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(66) 评论(0) 推荐(0)
摘要: Git Rebase 名称 git-rebase - 在另一个基本提示之上重新应用提交(Reapply commits on top of another base tip) 语法(概要) git rebase [-i | --interactive] [<options>] [--exec <cm 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(505) 评论(0) 推荐(0)
摘要: Git Merge 名称 git-merge - 将两个或多个开发历史合并到一起 语法 git merge [-n] [--stat] [--no-commit] [--squash] [--[no-]edit] [--no-verify] [-s <strategy>] [-X <strategy 阅读全文
posted @ 2023-02-12 20:26 菜阿 阅读(1849) 评论(0) 推荐(0)