1
0
mirror of synced 2025-12-07 14:14:27 +08:00

2 Commits

Author SHA1 Message Date
Tiary
65fcd5b035 Merge 40d8eb0da1 into 9412622b36 2025-09-21 13:51:46 +00:00
TiaryUyh
40d8eb0da1 add "how to pull docker arm64 image" into README.md 2025-07-14 13:35:54 +08:00
12 changed files with 39 additions and 2 deletions

BIN
.vs/HowToCook/v17/.wsuo Normal file

Binary file not shown.

View File

@@ -0,0 +1,23 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\16031\\source\\repos\\HowToCook\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 1,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedHeight": 535,
"SelectedChildIndex": -1,
"Children": [
{
"$type": "Bookmark",
"Name": "ST:128:0:{1fc202d4-d401-403c-9834-5b218574bb67}"
}
]
}
]
}
]
}

3
.vs/ProjectSettings.json Normal file
View File

@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

View File

@@ -0,0 +1,7 @@
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\C:\\Users\\16031\\Source\\Repos\\HowToCook",
"PreviewInSolutionExplorer": false
}

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

View File

@@ -17,12 +17,16 @@
## 本地部署
如果需要在本地部署菜谱 Web 服务,可以在安装 Docker 后运行下面命令:
X86平台
```bash
docker pull ghcr.io/anduin2017/how-to-cook:latest
docker run -d -p 5000:80 ghcr.io/anduin2017/how-to-cook:latest
```
Arm64平台
```bash
docker pull ghcr.io/tiaryuyh/how-to-cook-arm64:latest
docker run -d -p 5000:80 ghcr.io/tiaryuyh/how-to-cook-arm64:latest
```
如需下载 PDF 版本,可以在浏览器中访问 [/document.pdf](https://cook.aiursoft.cn/document.pdf)
## 如何贡献