build(www): 添加 Drone CI 流水线配置
- 新增 .drone.yml 文件用于定义 CI/CD 流程 - 配置了基于 Docker 的部署步骤 - 设置了工作区和卷映射以支持持久化数据 - 添加了构建准备阶段和 Docker 部署阶段 - 定义了环境变量和代理设置 - 配置了 artifacts 目录的处理逻辑 - 添加了 timezone 映射以确保时间同步 - 设置了 docker.sock 映射以支持 Docker in Docker
62
.drone.yml
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: www
|
||||||
|
trigger:
|
||||||
|
event: [push]
|
||||||
|
branch: [main]
|
||||||
|
|
||||||
|
# 使用工作区共享数据
|
||||||
|
# - 流水线中的临时数据, 等同 ${DRONE_WORKSPACE} => /drone/nuxt-app, 流水线结束后自动销毁
|
||||||
|
# - 需要显示使用 volumes 配置将其中的临时数据挂在到宿主机, 才能够持久化
|
||||||
|
workspace:
|
||||||
|
base: /drone
|
||||||
|
path: www
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# 打包准备阶段
|
||||||
|
- name: prepare-artifacts
|
||||||
|
image: alpine:3.22.2
|
||||||
|
volumes:
|
||||||
|
- name: artifacts_mapping
|
||||||
|
path: /artifacts
|
||||||
|
- name: timezone_mapping
|
||||||
|
path: /etc/localtime:ro
|
||||||
|
commands:
|
||||||
|
- cd $DRONE_WORKSPACE
|
||||||
|
- echo ">>> artifacts目录内容:"
|
||||||
|
- ls -la /artifacts/
|
||||||
|
- |
|
||||||
|
# 跟环境变量相关的可能最好不覆盖
|
||||||
|
cp -n compose.yaml /artifacts/
|
||||||
|
echo ">>> 最终artifacts目录内容:"
|
||||||
|
ls -la /artifacts/
|
||||||
|
|
||||||
|
# Docker 构建部署阶段
|
||||||
|
- name: deploy
|
||||||
|
image: docker:27.5.1-alpine3.21
|
||||||
|
depends_on: [prepare-artifacts]
|
||||||
|
environment: # 当前构建的容器使用的环境变量(对于其打包的不起作用奥)
|
||||||
|
HTTP_PROXY: http://127.0.0.1:7897
|
||||||
|
HTTPS_PROXY: http://127.0.0.1:7897
|
||||||
|
NO_PROXY: localhost,127.0.0.1
|
||||||
|
volumes:
|
||||||
|
- name: docker_sock_mapping
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
- name: timezone_mapping
|
||||||
|
path: /etc/localtime:ro
|
||||||
|
commands:
|
||||||
|
- pwd
|
||||||
|
- ls -al .
|
||||||
|
- docker compose build
|
||||||
|
|
||||||
|
# 卷配置
|
||||||
|
volumes:
|
||||||
|
- name: artifacts_mapping
|
||||||
|
host:
|
||||||
|
path: /root/apps/www
|
||||||
|
- name: docker_sock_mapping
|
||||||
|
host:
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
- name: timezone_mapping
|
||||||
|
host:
|
||||||
|
path: /etc/localtime
|
||||||
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
node_modules/
|
||||||
|
yarn.lock
|
||||||
|
yarn.error
|
||||||
|
.idea/
|
||||||
81
.vuepress/config.js
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
module.exports = {
|
||||||
|
"title": "ZhuHJay Blog",
|
||||||
|
"description": "my blog",
|
||||||
|
"dest": "public",
|
||||||
|
"head": [
|
||||||
|
[
|
||||||
|
"link",
|
||||||
|
{
|
||||||
|
"rel": "icon",
|
||||||
|
"href": "/favicon.ico"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"meta",
|
||||||
|
{
|
||||||
|
"name": "viewport",
|
||||||
|
"content": "width=device-width,initial-scale=1,user-scalable=no"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"theme": "reco",
|
||||||
|
"themeConfig": {
|
||||||
|
"nav": [
|
||||||
|
{
|
||||||
|
"text": "首页",
|
||||||
|
"link": "/",
|
||||||
|
"icon": "reco-home"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"text": "码云",
|
||||||
|
"icon": "reco-mayun",
|
||||||
|
"link": "https://gitee.com/ZhuHJay"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sidebar": {
|
||||||
|
"/blogs/java/java8/": [
|
||||||
|
"java8-1",
|
||||||
|
"java8-2",
|
||||||
|
"java8-3",
|
||||||
|
"java8-4"
|
||||||
|
],
|
||||||
|
"/blogs/java/jvm/": [
|
||||||
|
"JVM-内存结构",
|
||||||
|
"JVM-垃圾回收",
|
||||||
|
"JVM-字节码技术",
|
||||||
|
"JVM-类加载",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"type": "blog",
|
||||||
|
"blogConfig": {
|
||||||
|
"category": {
|
||||||
|
"location": 2,
|
||||||
|
"text": "分类"
|
||||||
|
},
|
||||||
|
"tag": {
|
||||||
|
"location": 3,
|
||||||
|
"text": "标签"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"friendLink": [],
|
||||||
|
"logo": "/logo.png",
|
||||||
|
"search": true,
|
||||||
|
"searchMaxSuggestions": 10,
|
||||||
|
"lastUpdated": "Last Updated",
|
||||||
|
"author": "ZhuHJay",
|
||||||
|
"authorAvatar": "/avatar.png",
|
||||||
|
"record": "赣ICP备2021010698号-3",
|
||||||
|
"recordLink": 'https://beian.miit.gov.cn',
|
||||||
|
"cyberSecurityRecord": '闽公网安备35021202000841号',
|
||||||
|
"cyberSecurityLink": 'https://beian.mps.gov.cn/#/query/webSearch?code=35021202000841',
|
||||||
|
"startYear": "2021"
|
||||||
|
},
|
||||||
|
"markdown": {
|
||||||
|
"lineNumbers": true
|
||||||
|
},
|
||||||
|
"locales": {
|
||||||
|
'/': {
|
||||||
|
"lang": 'zh-CN'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
.vuepress/public/avatar.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
.vuepress/public/favicon.ico
Normal file
|
After Width: | Height: | Size: 270 KiB |
BIN
.vuepress/public/hero.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
.vuepress/public/java8/ForkJoin-分治法.png
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
.vuepress/public/java8/ForkJoin-工作窃取算法.png
Normal file
|
After Width: | Height: | Size: 145 KiB |
BIN
.vuepress/public/java8/ForkJoin一览.png
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
.vuepress/public/java8/ForkJoin案例.png
Normal file
|
After Width: | Height: | Size: 131 KiB |
BIN
.vuepress/public/java8/Stream流式思想.png
Normal file
|
After Width: | Height: | Size: 168 KiB |
BIN
.vuepress/public/java8/Stream流式思想1.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
.vuepress/public/java8/filter.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
.vuepress/public/java8/reduce执行流程.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
.vuepress/public/java8/stream流.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
.vuepress/public/java8/匿名内部类生成的字节码.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
.vuepress/public/java8/流数据分区.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
.vuepress/public/java8/获得运行时Lambda内部类.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
.vuepress/public/jvm/1669015637679.png
Normal file
|
After Width: | Height: | Size: 106 KiB |
BIN
.vuepress/public/jvm/1669015814320.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
.vuepress/public/jvm/1669019510517.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
.vuepress/public/jvm/1669021362263.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
.vuepress/public/jvm/1669024208924.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
.vuepress/public/jvm/1669043972054.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
.vuepress/public/jvm/1669044220427.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
.vuepress/public/jvm/1669044331372.png
Normal file
|
After Width: | Height: | Size: 110 KiB |
BIN
.vuepress/public/jvm/1669044475571.png
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
.vuepress/public/jvm/1669044952813.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
.vuepress/public/jvm/1669045525089.png
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
.vuepress/public/jvm/1669128690245.png
Normal file
|
After Width: | Height: | Size: 313 KiB |
BIN
.vuepress/public/jvm/1669128719697.png
Normal file
|
After Width: | Height: | Size: 304 KiB |
BIN
.vuepress/public/jvm/1669130149269.png
Normal file
|
After Width: | Height: | Size: 301 KiB |
BIN
.vuepress/public/jvm/1669130788224.png
Normal file
|
After Width: | Height: | Size: 288 KiB |
BIN
.vuepress/public/jvm/1669131731576.png
Normal file
|
After Width: | Height: | Size: 940 KiB |
BIN
.vuepress/public/jvm/1669132766803.png
Normal file
|
After Width: | Height: | Size: 358 KiB |
BIN
.vuepress/public/jvm/1669368873122.png
Normal file
|
After Width: | Height: | Size: 224 KiB |
BIN
.vuepress/public/jvm/1669369052512.png
Normal file
|
After Width: | Height: | Size: 194 KiB |
BIN
.vuepress/public/jvm/1669385236575.png
Normal file
|
After Width: | Height: | Size: 186 KiB |
BIN
.vuepress/public/jvm/1669386211266.png
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
.vuepress/public/jvm/1669386395288.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
.vuepress/public/jvm/1669386619876.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
.vuepress/public/jvm/1669386799712.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
.vuepress/public/jvm/1669854149735.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
.vuepress/public/jvm/1669854271896.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
.vuepress/public/jvm/1669854379036.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
.vuepress/public/jvm/1669854602888.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
.vuepress/public/jvm/1669907703582.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
.vuepress/public/jvm/1669907818221.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
.vuepress/public/jvm/1669907993824.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
.vuepress/public/jvm/1669908372614.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
.vuepress/public/jvm/1669908437948.png
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
.vuepress/public/jvm/1669909462580.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
.vuepress/public/jvm/1669909491746.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
BIN
.vuepress/public/jvm/1670040261932.png
Normal file
|
After Width: | Height: | Size: 129 KiB |
BIN
.vuepress/public/jvm/1670046032461.png
Normal file
|
After Width: | Height: | Size: 191 KiB |
BIN
.vuepress/public/jvm/1670046677428.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
.vuepress/public/jvm/1670046787159.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
.vuepress/public/jvm/1670047109146.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
.vuepress/public/jvm/1670048081295.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
.vuepress/public/jvm/1670048493839.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
.vuepress/public/jvm/1670048714141.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
.vuepress/public/jvm/1670054933674.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
.vuepress/public/jvm/1670055197971.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
.vuepress/public/jvm/1670055453251.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
.vuepress/public/jvm/1670221697470.png
Normal file
|
After Width: | Height: | Size: 132 KiB |
BIN
.vuepress/public/jvm/1670222538332.png
Normal file
|
After Width: | Height: | Size: 167 KiB |
BIN
.vuepress/public/jvm/1670222781062.png
Normal file
|
After Width: | Height: | Size: 234 KiB |
BIN
.vuepress/public/jvm/1670223128743.png
Normal file
|
After Width: | Height: | Size: 206 KiB |
BIN
.vuepress/public/jvm/1670223335018.png
Normal file
|
After Width: | Height: | Size: 286 KiB |
BIN
.vuepress/public/jvm/1670223376535.png
Normal file
|
After Width: | Height: | Size: 207 KiB |
BIN
.vuepress/public/jvm/1670223577473.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
.vuepress/public/jvm/1670223846251.png
Normal file
|
After Width: | Height: | Size: 259 KiB |
BIN
.vuepress/public/jvm/1670223953960.png
Normal file
|
After Width: | Height: | Size: 197 KiB |
BIN
.vuepress/public/jvm/1670224060014.png
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
.vuepress/public/jvm/1670224223804.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
.vuepress/public/jvm/1670224265031.png
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
.vuepress/public/jvm/1670224443009.png
Normal file
|
After Width: | Height: | Size: 278 KiB |
BIN
.vuepress/public/jvm/1670224527319.png
Normal file
|
After Width: | Height: | Size: 214 KiB |
BIN
.vuepress/public/jvm/1670224818125.png
Normal file
|
After Width: | Height: | Size: 246 KiB |
BIN
.vuepress/public/jvm/1670225026514.png
Normal file
|
After Width: | Height: | Size: 427 KiB |
BIN
.vuepress/public/jvm/1670225112947.png
Normal file
|
After Width: | Height: | Size: 253 KiB |
BIN
.vuepress/public/jvm/1670225735794.png
Normal file
|
After Width: | Height: | Size: 221 KiB |
BIN
.vuepress/public/jvm/1670225834483.png
Normal file
|
After Width: | Height: | Size: 311 KiB |
BIN
.vuepress/public/jvm/1670225887463.png
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
.vuepress/public/jvm/1670225973371.png
Normal file
|
After Width: | Height: | Size: 278 KiB |
BIN
.vuepress/public/jvm/1670226003812.png
Normal file
|
After Width: | Height: | Size: 220 KiB |
BIN
.vuepress/public/jvm/1670226078219.png
Normal file
|
After Width: | Height: | Size: 298 KiB |
BIN
.vuepress/public/jvm/1670226107200.png
Normal file
|
After Width: | Height: | Size: 218 KiB |
BIN
.vuepress/public/jvm/1670226176345.png
Normal file
|
After Width: | Height: | Size: 280 KiB |
BIN
.vuepress/public/jvm/1670226329153.png
Normal file
|
After Width: | Height: | Size: 233 KiB |
BIN
.vuepress/public/jvm/1670226379924.png
Normal file
|
After Width: | Height: | Size: 288 KiB |
BIN
.vuepress/public/jvm/1670226433126.png
Normal file
|
After Width: | Height: | Size: 242 KiB |
BIN
.vuepress/public/jvm/1670338229940.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
.vuepress/public/jvm/1670338644448.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
.vuepress/public/jvm/1670338857348.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
.vuepress/public/jvm/1670339471963.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
.vuepress/public/jvm/1670339740477.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
.vuepress/public/jvm/1670339913417.png
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
.vuepress/public/jvm/1670415162524.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
BIN
.vuepress/public/jvm/1670419734596.png
Normal file
|
After Width: | Height: | Size: 270 KiB |