Business Apps 2 services 3 GiB RAM 17 GB disk

Odoo

The open-source business suite - CRM, sales, inventory, accounting, ecommerce - on a managed Postgres.

One-click deploy, from $25/mo on a Miget plan.

Odoo is the open-source business suite that actually spans the business: CRM, sales, inventory, accounting, manufacturing, projects, HR, a website builder, and ecommerce, all sharing one data model, with a large app store on top. The Community edition (LGPL-3) is genuinely capable on its own.

This template runs Odoo 18 on a managed Postgres in threaded mode, which keeps websockets and live chat on a single HTTP port - so the whole thing serves from :5000 with no second longpolling port to route. A thin entrypoint writes Odoo’s config from env (the master password has no env var upstream), keeping the secret out of the image.

Odoo Online charges per user per month ($38.90 Standard, $76.20 Custom); Community self-hosted is unlimited users on a flat plan - you trade Enterprise-only modules and official support for that.

#what you get

  • CRM, sales, inventory, accounting, projects, manufacturing, HR
  • Website builder and ecommerce included
  • Large community app store
  • Managed Postgres; threaded mode = single public port
  • Master password via generated config (no secret baked in)
  • LGPL-3 Community edition

#topology

ServiceRolePublic
odooweb + all apps (:5000, threaded)yes
dbPostgres - real container locally, **managed Postgres on Miget**no

#miget sizing

// this stack needs

3 GiB RAM · 17 GB disk · 2 services

Odoo is RAM-hungry: 2 GiB+ is the realistic floor. Kept in threaded mode (workers=0) so it stays on one public port; heavy multiprocessing needs a two-port proxy, out of scope here.

Hobby - recommended fit

$25/mo

2 vCPU · 4 GiB · 80 GiB disk

Headroom for your own apps: 8 GiB at $49/mo

Professional - production

$43/mo

2 vCPU · 4 GiB · 25 GiB disk

Dedicated resources, production SLOs - plan details

One Miget plan is a fixed pool of compute - the whole stack (managed databases included) deploys inside it, and anything left over runs your other apps. No per-service or per-seat math.

#vs. the managed service

What the hosted equivalents charge, against the flat Miget plan this stack fits on. Prices as of June 2026, sources linked.

ServicePlanMonthlyWhat you get
Odoo on Miget 4 GiB plan$25this whole stack, flat - no usage meters, and room left for your own apps
Odoo OnlineStandard~$389$38.90/user/mo (monthly) at 10 users; $31.10 annual
Odoo OnlineCustom~$762$76.20/user/mo at 10 users - adds Studio, multi-company, external API

Community self-hosted is unlimited users; you trade Enterprise-only apps and official support for a flat plan.

#vs. other PaaS

Estimated monthly cost of running this exact stack (3 GiB RAM, 17 GB disk, 2 containers) elsewhere, from published June 2026 rates.

PlatformEst. monthlyNotes
Miget $25 flat compose stacks first-class: one deploy, dedicated vCPU, managed Postgres/Valkey, volumes and TLS all included in the plan
Heroku ~$150 no volumes; nothing between 1 GB ($50) and 2.5 GB ($250) dynos - 2 GB containers cost far more than shown
Render ~$42 per-service instances (0.5 GB $7, 2 GB $25) - every container is its own paid service
DO App Platform ~$41 no persistent volumes - stateful containers need managed DBs/Spaces (base $5 Spaces included here)
Railway ~$33 usage-based ($10/GB RAM-mo); vCPU billed separately at $20/vCPU-mo on top
Fly.io ~$20 cheapest sticker price - but burstable shared CPUs (1/16 core; dedicated vCPUs cost ~2-3×), no compose deploys (one app per container, manual wiring), managed DBs billed extra

Estimates assume RAM fully allocated at published on-demand rates - and sticker price isn't the whole comparison: the cheaper rows buy burstable shared CPUs, per-service wiring instead of a compose deploy, and managed databases billed separately. Heroku and DO App Platform have no persistent volumes at all - stateful stacks like this one need workarounds there.

#deploy it

On Miget

  1. Create a Compose Stack in app.miget.com pointing at the templates repository
  2. Set the stack path to odoo
  3. Set the required variables:
    • ODOO_ADMIN_PASSWORD, master password (gates DB create/drop/backup)
    • ODOO_LIST_DB, False if the managed Postgres role can’t CREATEDB (pre-create one DB)
  4. Deploy. Miget layers compose.miget.yaml (RAM, privacy, volumes, managed services) automatically

Locally first?

Every template is portable, vanilla Docker Compose - the Miget overrides are ignored locally:

git clone https://github.com/deployable-sh/stacks
cd miget-compose-templates/odoo
docker compose up -d

Same files, same behavior. The template README covers connection strings and scaling notes.

#faq

How does this compare to Odoo Online pricing?

Odoo Online is per-user: Standard $38.90/user/month, Custom $76.20 - a 10-person company is $389-762/month. Community self-hosted here is $25/month flat with unlimited users. You give up Enterprise-only apps (some accounting/studio features) and official support.

Why is it pinned to Odoo 18, and why threaded mode?

The odoo image’s latest tag moved to 19 - pinning 18 prevents a surprise major upgrade. Threaded mode (workers=0) keeps websockets/livechat on the single HTTP port, so it fits the one-public-port model; multiprocessing splits websockets onto port 8072 and needs a two-port-aware proxy.

What is the database-manager caveat?

Odoo’s web DB-manager (create/drop databases) needs a Postgres role with CREATEDB. If the managed role lacks it, pre-create one database and set ODOO_LIST_DB=False - the running app needs no special privileges.

Ship Odoo today

One compose stack, 3 GiB of RAM, from $25/month flat, and it runs on your laptop with the same files.