odoo-docker-deployment
Production-ready Docker and docker-compose setup for Odoo with PostgreSQL, persistent volumes, environment-based configuration, and Nginx reverse proxy.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Overview
- When to Use This Skill
- How It Works
- Examples
- Example 1: Production docker-compose.yml
- Example 2: odoo.conf
- Example 3: Common Commands
- Best Practices
- Limitations
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
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.