4471 条记录
1292 私有链接
1292 私有链接
安装搭建:
Docker Compose部署
version: "3.9" # 设置 Compose 文件的版本
services:
aipan-netdisk-search:
image: fooololo/aipan-netdisk-search:latest # 使用的镜像
container_name: aipan-netdisk-search # 容器名称
network_mode: bridge # 网络模式
restart: unless-stopped # 重启策略
ports:
# 端口映射
- 13000:3000 # 将主机的 13000 端口映射到容器的 3000 端口
logging:
# 日志配置
options:
max-size: 5m # 日志文件的最大大小
max-file: "5" # 保留的最大日志文件数量