Agent skill · DevOps & Cloud

odoo-docker-deployment

Production-ready Docker and docker-compose setup for Odoo with PostgreSQL, persistent volumes, environment-based configuration, and Nginx reverse proxy.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill odoo-docker-deployment --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/odoo-docker-deployment/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Odoo Docker Deployment ## Overview This skill provides a complete, production-ready Docker setup for Odoo, including PostgreSQL, persistent file storage, environment variable configuration, and an optional Nginx reverse proxy with SSL. It covers both development and production configurations. ## When to Use This Skill - Spinning up a local Odoo development environment with Docker. - Deploying Odoo to a VPS or cloud server (AWS, DigitalOcean, etc.). - Troubleshooting Odoo container startup failures or database connection errors. - Adding a reverse proxy with SSL to an existing Odoo Docker setup. ## How It Works 1. **Activate**: Mention `@odoo-docker-deployment` and describe your deployment scenario. 2. **Generate**: Receive a complete `docker-compose.yml` and `odoo.conf` ready to run. 3. **Debug**: Describe your container error and get a diagnosis with a fix. ## Examples ### Example 1: Production docker-compose.yml ```yaml # Note: The top-level 'version' key is deprecated in Docker Compose v2+ # and can be safely omitted. Remove it to avoid warnings. services: db: image: postgres:15 restart: always environment: POSTGRES_DB: odoo POSTGRES_USER: odoo POSTGRES_PASSWORD: ${POSTGRES_PA

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Examples
  5. Example 1: Production docker-compose.yml
  6. Example 2: odoo.conf
  7. Example 3: Common Commands
  8. Best Practices
  9. Limitations
Commands it runs
Start all services in background
docker compose up -d
Stream Odoo logs in real time
docker compose logs -f odoo
Restart Odoo only (not DB — avoids data risk)
docker compose restart odoo
Stop all services
docker compose down
Backup the database to a local SQL dump
docker compose exec db pg_dump -U odoo odoo > backup_$(date +%Y%m%d).sql
More from agentic-awesome-skills
All skills →
About this skill
What does the odoo-docker-deployment skill do?

Production-ready Docker and docker-compose setup for Odoo with PostgreSQL, persistent volumes, environment-based configuration, and Nginx reverse proxy.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill odoo-docker-deployment --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going