-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pengmao
committed
Apr 17, 2024
1 parent
a84c880
commit 426f4c7
Showing
8 changed files
with
131 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,56 @@ | ||
# 记录 | ||
# Notes | ||
|
||
内容包含为网站建立、个人等方面 | ||
## 2024/04/17 | ||
|
||
这段时间一是将项目的构建方式修改为[VitePress](https://vitepress.dev/zh/),二是增加一些非前端的内容,如`Git`、`Docker` 等。 | ||
|
||
后续将会持续更新相关内容,一是增强自身能力,二是锻炼写作能力。 | ||
|
||
## 2024/03/03 | ||
|
||
从今天开始继续更新文档,作为毕业后工作一段时间的总结吧。 | ||
|
||
这两天将网站重新部署到了 GitHub Page 上面,把一些目录结构做了调整,为后面编写的内容做下划分。 | ||
|
||
## 2022/10/02 | ||
|
||
好久没更新了,现在恢复更新。 | ||
|
||
- CI/CD 部分 | ||
|
||
## 2022/03/18 | ||
|
||
更新内容,搜集知识点。 | ||
|
||
## 2022/03/06 | ||
|
||
更新设计模式等模块内容,做毕业。 | ||
|
||
## 2022/02/21 | ||
|
||
毕业设计开发中,网站建设中,开始复习,准备春招~~~。 | ||
|
||
## 2022/02/16 | ||
|
||
完成毕业设计初始模板搭建,代码运行环境配置。编写需求分析。 | ||
|
||
## 2022/02/13 | ||
|
||
毕业设计开始编写代码。合计如下: | ||
|
||
- design fortend | ||
- design backend | ||
|
||
前端网站采用`vue3`,使用`vite`开发。后台管理系统网站采用`react`,使用`umi`开发。后端采用`springboot`开发。app 采用`uniapp`开发。 | ||
|
||
拟腾讯云服务器主要部署前端代码,采用 nginx,阿里云服务器主要部署后端代码(Java8)。 | ||
|
||
使用 GitHub 进行代码托管。 | ||
|
||
## 2022/02/10 | ||
|
||
开始重构`blog`网站,重新编写内容,开始迁移老网站的内容。 | ||
|
||
个人项目:完善`mvvm`框架,封装`xhr`,学习,进步。 | ||
|
||
额外计划:记录,多读书。 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Docker | ||
|
||
## Docker 的基本概念 | ||
|
||
### Docker 是什么 | ||
|
||
Docker 是一个开源的容器化平台,用于开发、交付和运行应用程序。它允许开发人员将应用程序及其所有依赖项打包到一个成为容器的独立运行环境中。Docker 简化了应用程序的部署和管理过程,提高了开发和运维的效率。使用 Docker 可以实现跨平台、一致性和可重复性,同时还能够更高效地利用服务器资源 | ||
|
||
### 什么是容器化,容器和虚拟机的区别 | ||
|
||
容器是一种虚拟化技术,用于将应用程序及其依赖项打包到一个独立的运行环境汇总,称为容器。与传统的虚拟机相比,容器化更加轻量级和快速。 | ||
|
||
由于容器共享主机操作系统的内核,因此启动速度更快,占用资源更少,相比于虚拟机的庞大不可移植性,容器更具有可移植性和可伸缩性,使得应用程序可以在不同的环境中以相同的方式运行 | ||
|
||
### Docker 镜像是什么, 容器如何被创建 | ||
|
||
Docker 镜像是一个模板,包含了容器运行所需要的所有文件和依赖。它包含了一个完整的文件系统,包括应用程序、库、环境变量、配置文件等。 | ||
|
||
Docker 容器是从镜像中创建的运行实例。当启动容器时,会从镜像上创建一个可写的容器层,并在上面添加任何修改和新增的文件,这个过程称为容器启动的`写时复制`(Copy-on-Write),这种机制可以使得容器之间使用基础的镜像,又可以在运行时保持独立和隔离。 | ||
|
||
## 安装 Docker | ||
|
||
去[官网](https://www.docker.com/)安装即可 | ||
|
||
::: tip 提示 | ||
未完待续 | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Vite | ||
|
||
探究下`Vite`实现原理 | ||
|
||
::: tip 提示 | ||
未完待续 | ||
::: |
File renamed without changes.
File renamed without changes.