feat(wiki): ingest remaining subdirectories batch (51 files)

- Others: ChinaTextbook, Obsidian笔记系列, YouTube Channel ID, TikTok PM Django
- Skills: GOG CLI, Last30Days, baoyu-skills
- Vibe Coding: Cursor 2.0, Trae远程开发, Vibe-Kanban+OpenCode, vibe coding经验
- 微信公众号: 养虾日记1-5, AI时代赚钱
- 跨境电商: TikTok数据抓取, 选品策略, Superset Dashboard
- AI目录补充: 20个文件

Source pages: 51
Entities: TapXWorld, VibeKanban, OpenCode, Trae, SourceGrounding等
Concepts: 自举Meta生成, 5大设计原则, MD5去重, 混合搜索等
This commit is contained in:
2026-04-14 20:48:34 +08:00
parent 631b34fa88
commit f9ac3145ab
79 changed files with 2920 additions and 153 deletions

View File

@@ -0,0 +1,38 @@
---
title: "如何传输Docker images 并且在另一个Docker安装"
type: source
tags: [docker, image, synology, nas]
date: 2025-03-06
---
## Source File
- [[raw/Home Office/如何传输Docker images 并且在另一个Docker安装.md]]
## Summary
- 核心主题:跨设备传输 Docker 镜像(从工作电脑到 Synology NAS
- 问题域NAS 无法直接从 Docker Hub 拉取镜像时的解决方案
- 方法/机制docker save 打包镜像docker load 在目标机器导入
- 结论/价值:解决企业内网或 NAS 无法访问外网的镜像传输问题
## Key Claims
- docker pull 拉取镜像
- docker save -o xiaoya.tar xiaoyaliu/alist 打包为 tar 文件
- 上传 tar 文件到 NAS 文件系统
- docker load < xiaoya.tar 在 NAS Docker 中导入镜像
## Key Quotes
> "docker save -o xiaoya.tar" + "docker load < xiaoya.tar" — 离线镜像传输的完整流程
## Key Concepts
- [[Docker 镜像传输]]docker save/load 实现离线镜像迁移
## Key Entities
- [[Synology NAS]]:镜像导入目标
- [[Docker]]:容器运行时
## Connections
- [[Docker]] ← exports ← [[Docker镜像]]
- [[Docker]] ← imports ← [[Docker镜像]]
## Contradictions
-