专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 1072982923

elie222/inbox-zero Docker 镜像 - 轩辕镜像 | Docker 镜像高效稳定拉取服务

inbox-zero
elie222/inbox-zero
elie222
Inbox Zero - AI email assistant for Gmail and Outlook to reach inbox zero fast
0 次下载
😅 镜像要是出问题,背锅的一定是你
镜像简介版本下载
😅 镜像要是出问题,背锅的一定是你

![]([***]

Inbox Zero - your 24/7 AI email assistant

Organizes your inbox, pre-drafts replies, and tracks follow‑ups - so you reach inbox zero faster. Open source alternative to Fyxer, but more customisable and secure.
Website · *** · Issues

!Stars !Forks

![Vercel OSS Program]([***]

Mission

To help you spend less time in your inbox, so you can focus on what matters most.


![Deploy with Vercel]([***]

Features

  • AI Personal Assistant: Organizes your inbox and pre-drafts replies in your tone and style.
  • **Cursor Rules for ***** Explain in plain English how your AI should handle your inbox.
  • Reply Zero: Track emails to reply to and those awaiting responses.
  • Smart Categories: Automatically categorize every sender.
  • Bulk Unsubscriber: One-click unsubscribe and archive emails you never read.
  • Cold Email Blocker: Auto‑block cold emails.
  • Email Analytics: Track your activity and trends over time.
  • Meeting Briefs (Beta): Get personalized briefings before every meeting, pulling context from your email and calendar.
  • Smart Filing (Early Access): Automatically save email attachments to Google Drive or OneDrive.

Learn more in our docs.

Feature Screenshots

!AI Assistant!Reply Zero
AI AssistantReply Zero
!Gmail Client!Bulk Unsubscriber
Gmail clientBulk Unsubscriber

Demo Video

![Inbox Zero demo]([***]

Built with

  • Next.js
  • Tailwind CSS
  • shadcn/ui
  • Prisma
  • Upstash
  • Turborepo
  • Popsy Illustrations

Star History

![Star History Chart]([***]

Feature Requests

To request a feature open a GitHub issue, or join our ***.

Getting Started

We offer a hosted version of Inbox Zero at [***]

Self-Hosting

The easiest way to self-host Inbox Zero is using our pre-built Docker image.

bash
git clone [***]
cd inbox-zero
npm install
npm run setup

# Start Docker (Linux/Mac)
NEXT_PUBLIC_BASE_URL=http://localhost:3000 docker compose --profile all up -d

# Start Docker (Windows PowerShell)
# $env:NEXT_PUBLIC_BASE_URL="http://localhost:3000"; docker compose --profile all up -d

# Verify startup (wait for "Ready" message, Ctrl+C to exit logs)
docker logs inbox-zero-services-web-1 -f

Open http://localhost:3000

Tip: The setup CLI guides you through configuring your AI provider (OpenAI, Anthropic, etc.) and connecting Google or Microsoft accounts. For the fastest setup, choose the defaults and select "Full Docker Compose" when asked about databases. See Google OAuth Setup and Microsoft OAuth Setup below for detailed configuration instructions.

Important: You must enable the Gmail API and Google People API in your Google Cloud project, or sign-in will fail.

To update your configuration or pull the latest version:

bash
docker compose --profile all down
NEXT_PUBLIC_BASE_URL=http://localhost:3000 docker compose --profile all up -d

See our Self-Hosting Guide for complete instructions, production deployment, and configuration options.

Local Development Setup

Here's a video on how to set up the project. It covers the same steps mentioned in this document. But goes into greater detail on setting up the external services.

Option A: Devcontainer

The fastest way to get started is using devcontainers, supported by VS Code (Dev Containers extension), JetBrains IDEs, and other modern editors:

  1. Open the project and select "Reopen in Container" when prompted
  2. Wait for container to build and postCreateCommand to complete
  3. Configure at least one OAuth provider in apps/web/.env (see Google OAuth Setup or Microsoft OAuth Setup below for credentials and redirect URIs)
  4. Run pnpm dev
Option B: Manual Setup
Requirements
  • Node.js >= 22.0.0
  • pnpm >= 10.0.0
  • Docker desktop (recommended for running Postgres and Redis)
Quick Start
  1. Start PostgreSQL and Redis:

    bash
    docker compose -f docker-compose.dev.yml up -d
    
  2. Install dependencies and set up environment:

    bash
    pnpm install
    

    Option A: Interactive CLI - Guides you through each step and auto-generates secrets

    bash
    npm run setup
    

    Option B: Manual setup - Copy the example file and edit it yourself

    bash
    cp apps/web/.env.example apps/web/.env
    # Generate secrets with: openssl rand -hex 32
    
  3. Run database migrations:

    bash
    cd apps/web
    pnpm prisma migrate dev
    
  4. Run the development server:

    bash
    pnpm dev
    

The app will be available at http://localhost:3000.

The sections below provide detailed setup instructions for OAuth and other services. For a comprehensive reference of all environment variables, see the Environment Variables Guide.

Google OAuth Setup

Quick Setup with CLI: If you have the gcloud CLI installed, you can use inbox-zero setup-google to automate API enabling and Pub/Sub setup. It will guide you through the OAuth steps that require manual console access. Run npx inbox-zero setup-google --help for options.

Go to Google Cloud Console and create a new project if necessary.

Create new credentials:

  1. If the banner shows up, configure consent screen (if not, you can do this later)

    1. Click the banner, then Click Get Started.
    2. Choose a name for your app, and enter your email.
    3. In Audience, choose External
    4. Enter your contact information
    5. Agree to the User Data policy and then click Create.
    6. Return to APIs and Services using the left sidebar.
  2. Create new credentials:

    1. Click the +Create Credentials button. Choose OAuth Client ID.
    2. In Application Type, Choose Web application
    3. Choose a name for your web client
    4. In Authorized JavaScript origins, add a URI and enter http://localhost:3000 (replace localhost:3000 with your domain in production)
    5. In Authorized redirect URIs enter (replace localhost:3000 with your domain in production):
    • http://localhost:3000/api/auth/callback/google
    • http://localhost:3000/api/google/linking/callback
    • http://localhost:3000/api/google/calendar/callback (only required for calendar integration)
    • http://localhost:3000/api/google/drive/callback (only required for Google Drive integration)
    1. Click Create.
    2. A popup will show up with the new credentials, including the Client ID and secret.
  3. Update .env file:

    1. Copy the Client ID to GOOGLE_CLIENT_ID
    2. Copy the Client secret to GOOGLE_CLIENT_SECRET
  4. Update scopes

    1. Go to Data Access in the left sidebar (or click link above)
    2. Click Add or remove scopes
    3. Copy paste the below into the Manually add scopes box:
    plaintext
    [***]
    [***]
    [***]
    [***]
    [***]
    [***] (only required for calendar integration)
    [***] (only required for Google Drive integration)
    
    1. Click Update
    2. Click Save in the Data Access page.
  5. Add yourself as a test user

    1. Go to Audience
    2. In the Test users section, click +Add users
    3. Enter your email and press Save
  6. Enable required APIs in Google Cloud Console:

    • Gmail API (required)
    • Google People API (required)
    • Google Calendar API (only required for calendar integration)
    • Google Drive API (only required for Google Drive integration)
Google PubSub Setup

Automated Setup: If you ran inbox-zero setup-google, the Pub/Sub topic and subscription were created automatically. Skip to the "For local development" section if needed.

PubSub enables real-time email notifications. Follow the official guide:

  1. Create a topic
  2. Create a subscription
  3. Grant publish rights on your topic

Set GOOGLE_PUBSUB_TOPIC_NAME in your .env file.

When creating the subscription, select Push and set the URL to: [***]

Set GOOGLE_PUBSUB_VERIFICATION_TOKEN in your .env file to the value of TOKEN.

For local development, use *** to expose your local server:

sh
*** http 3000

Then update the webhook endpoint in the Google PubSub subscriptions dashboard.

Scheduled tasks: Several features require periodic execution. If using Docker Compose, this is handled automatically by the cron container. Otherwise, set up cron jobs manually:

EndpointFrequencyCron ExpressionDescription
/api/watch/allEvery 6 hours0 */6 * * *Renews Gmail/Outlook push notification subscriptions
/api/meeting-briefsEvery 15 minutes*/15 * * * *Sends pre-meeting briefings (optional, only if using meeting briefs feature)
/api/follow-up-remindersEvery 30 minutes*/30 * * * *Processes follow-up reminder notifications (optional, only if using follow-up reminders feature)

See Self-Hosting Guide for detailed cron configuration.

Microsoft OAuth Setup

Go to Microsoft Azure Portal and create a new Azure Active Directory app registration:

  1. Navigate to Azure Active Directory

  2. Go to "App registrations" in the left sidebar or search it in the searchbar

  3. Click "New registration"

    1. Choose a name for your application
    2. Under "Supported account types" select one of:
      • Multitenant (default): "Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)" - allows any Microsoft account
      • Single tenant: "Accounts in this organizational directory only" - restricts to your organization only
    3. Set the Redirect URI:
      • Platform: Web
      • URL: http://localhost:3000/api/auth/callback/microsoft (replace localhost:3000 with your domain in production)
    4. Click "Register"
    5. In the "Manage" menu click "Authentication (Preview)"
    6. Add the following Redirect URIs (replace localhost:3000 with your domain in production):
      • http://localhost:3000/api/outlook/linking/callback
      • http://localhost:3000/api/outlook/calendar/callback (only required for calendar integration)
      • http://localhost:3000/api/outlook/drive/callback (only required for OneDrive integration)
  4. Get your credentials from the Overview tab:

    1. Copy the "Application (client) ID" → this is your MICROSOFT_CLIENT_ID
    2. If using single tenant, copy the "Directory (tenant) ID" → this is your MICROSOFT_TENANT_ID
    3. Go to "Certificates & secrets" in the left sidebar
      • Click "New client secret"
      • Add a description and choose an expiry
      • Click "Add"
      • Copy the Value → this is your MICROSOFT_CLIENT_SECRET (Important: copy Value, not Secret ID)
  5. Configure API permissions:

    1. In the "Manage" menu click "API permissions" in the left sidebar

    2. Click "Add a permission"

    3. Select "Microsoft Graph"

    4. Select "Delegated permissions"

    5. Add the following permissions:

      • openid
      • profile
      • email
      • User.Read
      • offline_access
      • Mail.ReadWrite
      • Mail.Send (only required if NEXT_PUBLIC_EMAIL_SEND_ENABLED=true, which is the default)
      • MailboxSettings.ReadWrite
      • Calendars.Read (only required for calendar integration)
      • Calendars.ReadWrite (only required for calendar integration)
      • Files.ReadWrite (only required for OneDrive integration)
    6. Click "Add permissions"

    7. Click "Grant admin consent" if you're an admin

  6. Update your .env file with the credentials:

    MICROSOFT_CLIENT_ID=your_client_id_here
    MICROSOFT_CLIENT_SECRET=your_client_secret_here
    MICROSOFT_TENANT_ID=your_tenant_id_here  # Only needed for single tenant, omit for multitenant
    
LLM Setup

In your .env file, uncomment one of the LLM provider blocks and add your API key:

  • Anthropic
  • OpenAI
  • Google Gemini
  • OpenRouter
  • Vercel AI Gateway
  • AWS Bedrock
  • Groq

Users can also change the model in the app on the /settings page.

Local Production Build

To test a production build locally:

bash
# Without Docker
pnpm run build
pnpm start

# With Docker (includes Postgres and Redis)
NEXT_PUBLIC_BASE_URL=http://localhost:3000 docker compose --profile all up --build
Self-Hosting

For production deployments, see our guides:

  • Self-Hosting Guide
  • AWS EC2 Deployment
  • AWS Copilot (ECS/Fargate)

Contributing to the project

You can view open tasks in our GitHub Issues. Join our *** to discuss tasks and check what's being worked on.

ARCHITECTURE.md explains the architecture of the project (LLM generated).

Releases

Docker images are automatically built on every push to main and tagged with the commit SHA (e.g., elie222/inbox-zero:abc1234). The latest tag always points to the most recent main build.

For formal releases, we create GitHub Releases with version tags (e.g., v2.26.0) which also trigger Docker builds with that version tag.

查看更多 inbox-zero 相关镜像 →
rocicorp/zero logo
rocicorp/zero
rocicorp
Zero是一款通用的Web同步引擎,用于实现Web环境中的数据同步功能。
15M+ pulls
上次更新:4 天前

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
elie222/inbox-zero
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
咨询镜像拉取问题请 提交工单,官方技术交流群:1072982923
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.