Should I self-host Tolgee?
Same software, different bill: Tolgee's cloud is $49/mo, the container is free and ships an embedded Postgres for exactly this kind of single-box setup. In-context editing works the same pointed at your own instance.
Managed backups and the cloud plan's machine-translation credits
translation management · in-context editing · machine-translation assist · developer SDKs
* Percent of the subscription price. Your time is priced at the slider's rate — $0/h ("my homelab time is free and I love it") is a legitimate position. Every number is derived from the record, never hand-written. Price source, checked 2026-08-07.
Runs comfortably on a real VPS (2 GB+).



# Tolgee — localization platform; standalone image with embedded postgres
services:
tolgee:
image: tolgee/tolgee:latest
container_name: tolgee
restart: unless-stopped
environment:
TOLGEE_AUTHENTICATION_ENABLED: "true"
TOLGEE_AUTHENTICATION_INITIAL_PASSWORD: changeme123
TOLGEE_POSTGRES_AUTOSTART_ENABLED: "true"
ports:
- "8105:8080"
volumes:
- tolgee-data:/data
probe:
image: busybox:stable
network_mode: "service:tolgee"
depends_on:
- tolgee
command: sh -c 'while true; do sleep 30; done'
healthcheck:
test: ["CMD-SHELL", "nc -z localhost 8080 || exit 1"]
interval: 5s
timeout: 5s
retries: 60
start_period: 60s
volumes:
tolgee-data:
Want a guided install instead? caniselfhostit.com/tolgee-cloud has AI-agent prompts that assume a bare machine — that's their half of the stool, and it's good.
FULL TIMED LOG
# Tolgee — verdict log - **Date:** 2026-08-10 - **Verdict:** YES — worth it - **Protocol:** v1 (2GB reference env, Docker preinstalled, AI assistant: claude-code) ## Setup evidence (shared) - This verdict rides on the same replacement verified for `lokalise-tolgee` — see `compose/lokalise-tolgee.yml` and its log. ## The call Same software, different bill: Tolgee's cloud is $49/mo, the container is free and ships an embedded Postgres for exactly this kind of single-box setup. In-context editing works the same pointed at your own instance.