Browse Source

compose config file update

master
filesite 1 week ago
parent
commit
aaab1d6d70
  1. 14
      README.md
  2. 2
      compose.yaml
  3. 2
      themes/beauty/controller/CommandController.php

14
README.md

@ -38,6 +38,20 @@ Machete是单入口模式PHP源码,**不支持子目录方式访问**,以下
| 导航站 | 站长手册 | <a href="https://webdirectory.filesite.io" target="_blank">WebDir</a> | | 导航站 | 站长手册 | <a href="https://webdirectory.filesite.io" target="_blank">WebDir</a> |
## 基于Docker Compose部署
如果你已经安装了Docker Desktop,并确认已经支持docker compose命令,可使用以下命令进行安装:
```
docker compose build
docker compose up -d
```
如果你是在支持docker compose的NAS系统里安装,请参考下面配置:
[Docker Compose配置参考](./compose.yaml)
## 基于Docker部署 ## 基于Docker部署
在Docker中如何用filesite/machete源码快速搭建支持文件/目录管理内容的图片网站、视频网站、导航网站和文档站的视频教程。 在Docker中如何用filesite/machete源码快速搭建支持文件/目录管理内容的图片网站、视频网站、导航网站和文档站的视频教程。

2
compose.yaml

@ -10,8 +10,6 @@ name: filesite_machete
services: services:
web: web:
build: . build: .
# upgrade to latest version
command: /var/www/machete/bin/upgrade.sh
ports: ports:
- "1080:80" - "1080:80"
image: "filesite/machete:latest" image: "filesite/machete:latest"

2
themes/beauty/controller/CommandController.php

@ -503,7 +503,7 @@ eof;
$cacheData[$dirId]['image_total'] = $imgNum; $cacheData[$dirId]['image_total'] = $imgNum;
$cacheData[$dirId]['video_total'] = $videoNum; $cacheData[$dirId]['video_total'] = $videoNum;
$cacheData[$dirId]['audio_total'] = $audioNum; $cacheData[$dirId]['audio_total'] = $audioNum;
echo "File total: {$dirId}: image {$imgNum}, video {$videoNum}, audio {$audioNum}\n"; echo "File total: image {$imgNum}, video {$videoNum}, audio {$audioNum}\n";
//更新所有父目录数据 //更新所有父目录数据
$parentDir = $this->getParentDir($dirpath); $parentDir = $this->getParentDir($dirpath);

Loading…
Cancel
Save