Example stacks you can deploy with Hostess, the Docker Compose for production. Each directory is a self-contained module with a hostess.yml for deployment and a docker-compose.yml for local smoke testing.
Read the Hostess documentation for more information.
Pick a stack, cd into its directory, then:
hostess validate
hostess deployTo run the same layout locally:
docker compose upMost stacks require secrets (API keys, passwords, encryption keys). Each module's README lists what to set with hostess secrets set command.
| Stack | Description | Projects |
|---|---|---|
| simple-next-app | Minimal Next.js app from the Deploy Your First App guide | Next.js |
| simple-full-stack | Next.js frontend, FastAPI backend, and Postgres from the Deploy Next.js + FastAPI + Postgres guide | Next.js, FastAPI, PostgreSQL |
| Stack | Description | Projects |
|---|---|---|
| supabase | Self-hosted Supabase from the Supabase stack guide | Supabase |
| metabase | Metabase with Postgres from the Metabase stack guide | Metabase |
| calcom | Calendar scheduling from the Cal.com stack guide | Cal.com |
| n8n | Workflow automation from the n8n stack guide | n8n |
| flowise | Visual LLM workflow builder | Flowise |
| directus | Headless CMS and API | Directus |
| meilisearch | Meilisearch from the Meilisearch stack guide | Meilisearch |
| open-webui-llama | Gemma 4 E2B on Hostess from the Open LLM guide | Open WebUI, llama.cpp |
Every stack follows the same pattern:
hostess.yml— services, databases, jobs, and secrets for Hostessdocker-compose.yml— local mirror for development and smoke testsREADME.md— required secrets, deploy steps, and local URLs
Some stacks add seed jobs, custom images, or extra config (for example supabase/kong.yml or flowise/garage.toml). See the module README for details.
Add a new directory with hostess.yml, docker-compose.yml, and a README that documents required secrets and how to run locally.