MT_Photos

MT Photos 是一款付费闭源的私有相册服务,定位接近群晖 Photos,适合用来做照片备份、相册管理和家庭影像整理。

官网

启动

docker-compose.yml
version: "3"

services:
  mtphotos:
    image: registry.cn-hangzhou.aliyuncs.com/mtphotos/mt-photos:latest
    container_name: mtphotos
    restart: always
    ports:
      - 8063:8063
    volumes:
      - ./config:/config
      - ./upload:/upload
    environment:
      - TZ=Asia/Shanghai
      - LANG=C.UTF-8
  mt-photos-deepface:
    ports:
      - 8066:8066
    environment:
      - API_AUTH_KEY=test
    container_name: mt-photos-deepface
    image: registry.cn-hangzhou.aliyuncs.com/mtphotos/mt-photos-deepface:latest
    restart: always
  mtphotos_ai:
    image: registry.cn-hangzhou.aliyuncs.com/mtphotos/mt-photos-ai:onnx-latest
    container_name: mtphotos_ai
    restart: always
    ports:
      - 8060:8000
    environment:
      - API_AUTH_KEY=test
Tip

图片服务通常会占用较多存储空间。部署前建议先规划照片目录、缩略图缓存目录和备份策略。