返回应用列表
Authentik

Deploy Authentik on Your Own Server

Authentik is an open-source Identity Provider that unifies your identity needs into a single platform, replacing Okta, Active Directory, and auth0. Supports SAML, OIDC, OAuth2, SCIM and LDAP.

🛠️ Developer Tools

想更快部署 Authentik到服务器?试试 Senate,一条命令完成部署,自动配置 HTTPS 和监控。

立即开始

什么是 Authentik?

Authentik is an open-source Identity Provider focused on flexibility and versatility. This deployment includes PostgreSQL, Redis, and the latest Authentik server with worker. The deployment typically takes 2-3 minutes.

了解更多

自托管 Authentik

按照以下步骤在您的服务器上部署。

1

安装 Docker

如果服务器上已安装 Docker,可跳过此步骤。

curl -fsSL https://get.docker.com | sh
2

配置

自定义以下设置。大多数情况下使用默认值即可。

General
3

部署

复制配置并在服务器上运行。

services:
  authentik:
    image: ghcr.io/goauthentik/server:2025.6.1
    environment:
      AUTHENTIK_DISABLE_STARTUP_ANALYTICS: "true"
      AUTHENTIK_DISABLE_UPDATE_CHECK: "true"
      AUTHENTIK_ERROR_REPORTING__ENABLED: "false"
      AUTHENTIK_POSTGRESQL__HOST: authentik-postgresql
      AUTHENTIK_POSTGRESQL__NAME: authentik
      AUTHENTIK_POSTGRESQL__PASSWORD: 4a972f5082d2e130d162039be2ddf768
      AUTHENTIK_POSTGRESQL__USER: authentik
      AUTHENTIK_REDIS__HOST: authentik-redis
      AUTHENTIK_SECRET_KEY: c05a787c273030babc9d3db3223138c4558aaf4186f1be64ad45f41222b6587b
    volumes:
      - authentik-media:/media
      - authentik-custom-templates:/templates
    depends_on:
      - authentik-postgresql
      - authentik-redis
      - authentik-init
  authentik-init:
    image: alpine:3.19
    volumes:
      - authentik-media:/media
      - authentik-certs:/certs
      - authentik-custom-templates:/templates
  authentik-postgresql:
    image: docker.io/library/postgres:16-alpine
    environment:
      POSTGRES_DB: authentik
      POSTGRES_PASSWORD: 4a972f5082d2e130d162039be2ddf768
      POSTGRES_USER: authentik
    volumes:
      - authentik-postgresql-data:/var/lib/postgresql/data
  authentik-redis:
    image: docker.io/library/redis:8.0-alpine
    volumes:
      - authentik-redis-data:/data
  authentik-worker:
    image: ghcr.io/goauthentik/server:2025.6.1
    environment:
      AUTHENTIK_DISABLE_STARTUP_ANALYTICS: "true"
      AUTHENTIK_DISABLE_UPDATE_CHECK: "true"
      AUTHENTIK_ERROR_REPORTING__ENABLED: "false"
      AUTHENTIK_POSTGRESQL__HOST: authentik-postgresql
      AUTHENTIK_POSTGRESQL__NAME: authentik
      AUTHENTIK_POSTGRESQL__PASSWORD: 4a972f5082d2e130d162039be2ddf768
      AUTHENTIK_POSTGRESQL__USER: authentik
      AUTHENTIK_REDIS__HOST: authentik-redis
      AUTHENTIK_SECRET_KEY: c05a787c273030babc9d3db3223138c4558aaf4186f1be64ad45f41222b6587b
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - authentik-media:/media
      - authentik-certs:/certs
      - authentik-custom-templates:/templates
    depends_on:
      - authentik-postgresql
      - authentik-redis
      - authentik-init
volumes:
  authentik-media: {}
  authentik-custom-templates: {}
  authentik-certs: {}
  authentik-postgresql-data: {}
  authentik-redis-data: {}

然后运行:

docker compose up -d
4

访问

启动后,访问您的应用: http://localhost:9000

为什么要自托管 Authentik?

完全数据所有权

数据保存在您的服务器上,无第三方访问。

无月费

只需支付服务器费用,无按席位或用量收费。

完全控制

按您的需求自定义、备份和扩展。

隐私与合规

满足 GDPR、HIPAA 或内部安全要求。

技术细节

Docker 镜像

ghcr.io/goauthentik/server:${authentik_version}

官方文档

docs.goauthentik.io

想更快部署?

尝试 Senate!Senate 帮您处理 Docker、HTTPS、更新和监控。一条命令部署 300+ 应用。

在任意 Linux 服务器上安装:

sh -c "$(curl -sSL https://get.senate.sh)"