Documentation Index
Fetch the complete documentation index at: https://docs.postiz.com/llms.txt
Use this file to discover all available pages before exploring further.
Hardware
Recommended starting point for a small team (≤ 20 users):| Component | Supported floor | Recommended |
|---|---|---|
| CPU | 2 vCPU | 4 vCPU |
| RAM | 2 GB (all-in-one, light use) | 8 GB |
| Disk | 20 GB | 50 GB + persistent volume for uploads |
pnpm install / pnpm build from source) is the most
memory-hungry part and can OOM on 2 GB VMs. Bump the Node heap if it
fails:
Recommended install path
The canonical self-host setup is the official Docker Compose repo:postiz-docker-compose
Pre-wired Postiz + Postgres + Redis + Temporal. The fastest way to a working install.
Required services
Postiz needs four external services:| Service | Minimum version |
|---|---|
| PostgreSQL | 14 |
| Redis | 6 |
| Temporal | bundled with official docker-compose; required since v2.12.0 |
| Object storage | Optional — local filesystem works (STORAGE_PROVIDER=local), Cloudflare R2 supported (STORAGE_PROVIDER=cloudflare) |
DATABASE_URL, REDIS_URL, and
TEMPORAL_ADDRESS.
Default ports
| Service | Port | When |
|---|---|---|
| Postiz container (bundled FE + BE) | 5000 | Official Docker image (ghcr.io/gitroomhq/postiz-app) — exposed for you to map. The bundled compose maps host 4007:5000. |
| Backend (Nest) | 3000 | Running from source (pnpm dev / pnpm start). Override via PORT. |
| Frontend (Next.js) | 4200 | Running from source. |
| Temporal frontend | 7233 | gRPC; both modes. |
| Temporal UI | 8080 | If bundled compose is used. |
Filesystem
IfSTORAGE_PROVIDER=local, set UPLOAD_DIRECTORY to a host path and
mount that path into the backend container. The frontend serves the
same files through /uploads/:path*. See Uploads & storage.
If you’d rather offload media: configure Cloudflare R2.
Outbound network
Postiz initiates outbound HTTPS to every social provider you connect. Strict egress firewalls will break OAuth — make sure the backend can reach:api.twitter.com,upload.twitter.comgraph.facebook.com,graph.instagram.com,graph.threads.netlinkedin.com,api.linkedin.comopenapi.tiktok.com,open.tiktokapis.comgoogleapis.com(YouTube + GMB)- the Mastodon instance you configure via
MASTODON_URL - any other provider you intend to use
HTTPS_PROXY and HTTP_PROXY
on the backend.
Inbound network
The frontend talks to the backend from the browser, soNEXT_PUBLIC_BACKEND_URL must be reachable from your users’ browsers,
not just from the frontend SSR server. A reverse proxy in front of both
ports is the typical setup — see Reverse Proxies.
