返回应用列表
Formance Ledger

Deploy Formance Ledger on Your Own Server

Programmable Financial Ledger To Build Money-Moving Applications

🛠️ Developer Tools

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

立即开始

什么是 Formance Ledger?

Formance Ledger lets you model and record complex money movements, helping you accelerate your business operations. Build financial dashboards, deliver payments to your marketplace partners, and accurately track revenue across your entire operation.

了解更多

自托管 Formance Ledger

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

1

安装 Docker

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

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

配置

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

Application
Database
3

部署

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

services:
  formance_ledger:
    image: ghcr.io/formancehq/ledger:v1.8.0
    environment:
      NUMARY_AUTH_BASIC_CREDENTIALS: b0b35b11f3c14dc7
      NUMARY_AUTH_BASIC_ENABLED: "true"
      NUMARY_SEGMENT_ENABLED: "false"
      NUMARY_SERVER_HTTP_BIND_ADDRESS: 0.0.0.0:3068
      NUMARY_STORAGE_DRIVER: postgres
      NUMARY_STORAGE_POSTGRES_CONN_STRING: postgresql://formance:7b235324029c88ee@formance_ledger-db/formance
    volumes:
      - formance_ledger:/root/.numary
    depends_on:
      - formance_ledger-db
  formance_ledger-db:
    image: postgres:14.0-alpine
    environment:
      POSTGRES_DB: formance
      POSTGRES_PASSWORD: 7b235324029c88ee
      POSTGRES_USER: formance
    volumes:
      - formance_ledger-db:/var/lib/postgresql/data
  formance_ledger-ui:
    environment:
      NUMARY_UI_HTTP_BIND_ADDRESS: 0.0.0.0:3078
    depends_on:
      - formance_ledger
volumes:
  formance_ledger: {}
  formance_ledger-db: {}

然后运行:

docker compose up -d
4

访问

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

为什么要自托管 Formance Ledger?

完全数据所有权

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

无月费

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

完全控制

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

隐私与合规

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

技术细节

Docker 镜像

ghcr.io/formancehq/ledger:${FORMANCE_LEDGER_VERSION}

官方文档

docs.formance.com

想更快部署?

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

在任意 Linux 服务器上安装:

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