Docker-based Odoo database migration tool using OpenUpgrade framework
Project description
OdooUpgrader
Professional command-line tool for automating Odoo database upgrades using OCA's OpenUpgrade framework. Seamlessly upgrade your Odoo databases from version 10.0 through 19.0 with a single command.
โจ Features
- ๐ Automated Incremental Upgrades: Automatically handles multi-step upgrades
- ๐ฆ Multiple Source Formats: Supports both
.zipand.dumpdatabase files - ๐ Remote Downloads: Download databases directly from URLs
- ๐ Custom Addons Support: Include custom Odoo modules during the upgrade process
- ๐ณ Docker-Based: Uses containerized environments for safe, isolated upgrades
- ๐ Rich CLI Output: Beautiful progress bars and status indicators using Rich library
- ๐ Detailed Logging: Optional verbose mode and log file support
- โ Validation: Pre-flight checks for source accessibility and Docker availability
๐ Requirements
- Python: 3.9 or higher
- Docker: Docker Engine with Docker Compose (v2) or docker-compose (v1)
- Operating System: Linux, macOS, or Windows (with WSL2 for best results)
- Disk Space: Minimum 5GB free space for Docker volumes and temporary files
๐ Installation
Using pip (Recommended)
pip install odooupgrader
From Source
git clone https://github.com/fasilwdr/OdooUpgrader.git
cd OdooUpgrader
pip install -e .
๐ Usage
Basic Usage
Upgrade a local database file to version 16.0:
odooupgrader --source /path/to/database.zip --version 16.0
Download and Upgrade from URL
odooupgrader --source https://example.com/database.dump --version 17.0
Upgrade with Custom Addons
Include custom addons from a local directory:
odooupgrader --source /path/to/database.zip --version 16.0 --extra-addons /path/to/custom_addons
Include custom addons from a local ZIP file:
odooupgrader --source /path/to/database.zip --version 16.0 --extra-addons /path/to/addons.zip
Include custom addons from a remote ZIP URL:
odooupgrader --source /path/to/database.zip --version 16.0 --extra-addons https://example.com/custom_addons.zip
Specify PostgreSQL Version
odooupgrader --source /path/to/database.zip --version 16.0 --postgres-version 15
Enable Verbose Logging
odooupgrader --source /path/to/database.zip --version 18.0 --verbose
Save Logs to File
odooupgrader --source /path/to/database.zip --version 15.0 --log-file upgrade.log
Complete Example with All Options
odooupgrader \
--source https://example.com/database.dump \
--version 17.0 \
--extra-addons https://example.com/custom_modules.zip \
--postgres-version 15 \
--verbose \
--log-file upgrade.log
๐ฏ Command-Line Options
| Option | Required | Description |
|---|---|---|
--source |
โ | Path to local .zip/.dump file or URL to download |
--version |
โ | Target Odoo version (10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0) |
--extra-addons |
โ | Custom addons location: local folder, local .zip file, or URL to .zip file |
--postgres-version |
โ | PostgreSQL version for the database container (default: 13) |
--verbose |
โ | Enable verbose logging output |
--log-file |
โ | Path to save detailed log file |
๐ How It Works
- Validation: Checks if source file/URL is accessible and Docker is available
- Environment Setup: Creates necessary directories and PostgreSQL container
- Source Processing: Downloads (if URL) and extracts the database
- Addons Processing: Downloads and extracts custom addons (if provided)
- Database Restoration: Restores database and filestore to PostgreSQL
- Version Detection: Determines current database version
- Incremental Upgrades: Runs OpenUpgrade for each version step with custom addons
- Package Creation: Creates final
.zipwith upgraded database and filestore
๐ Output Structure
After successful upgrade, you'll find in the output directory:
output/
โโโ upgraded.zip # Final packaged database (ready to restore)
โโโ odoo.log # Upgrade process logs
๐ Architecture
graph TD
A[Input Source] --> B{File Type?}
B -->|ZIP| C[Extract ZIP]
B -->|DUMP| D[Copy DUMP]
C --> E[Database Container]
D --> E
E --> F[Restore Database]
F --> G[Get Current Version]
G --> H{Current < Target?}
H -->|Yes| I[Build Upgrade Container]
I --> J{Extra Addons ?}
J -->|Yes| K[Mount Custom Addons]
J -->|No| L[Run OpenUpgrade]
K --> L
L --> M[Update Database]
M --> N[Get New Version]
N --> H
H -->|No| O[Create Final Package]
O --> P[Cleanup]
๐ง Custom Addons
The --extra-addons option allows you to include custom Odoo modules during the upgrade process. This is essential when your database uses custom addons that need to be available during migration.
Supported Formats
- Local Directory:
--extra-addons /path/to/custom_addons - Local ZIP File:
--extra-addons /path/to/addons.zip - Remote ZIP URL:
--extra-addons https://example.com/custom_modules.zip
Directory Structure
custom_addons/
โโโ requirements.txt # Optional: Python dependencies for your addons
โโโ module_1/
โ โโโ __init__.py
โ โโโ __manifest__.py
โโโ module_2/
โ โโโ __init__.py
โ โโโ __manifest__.py
Note: If your custom addons require additional Python packages, include a requirements.txt file in the root directory. Dependencies will be automatically installed during the upgrade process.
๐ Supported Versions
This tool supports upgrading Odoo databases from version 10.0 through 19.0. The upgrade paths and compatibility are determined by the OCA OpenUpgrade project, which maintains migration scripts for each Odoo version.
๐ค Contributing
Contributions are welcome!
๐ Security Considerations
- Database credentials are hardcoded for the temporary Docker container
- The PostgreSQL container is on an isolated Docker network
- No ports are exposed to the host machine
- Containers are automatically cleaned up after upgrade
- Consider using this tool in isolated environments for production databases
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Acknowledgments
- OCA (Odoo Community Association) for the OpenUpgrade framework
- OpenUpgrade Project for migration scripts
๐ Support
- Issues: GitHub Issues
- Email: fasilwdr@hotmail.com
๐ Changelog
Version 0.3.0
- โ Added support for Odoo 19.0
Version 0.2.0
- โจ Added custom addons support via
--extra-addonsoption - ๐ฆ Support for local directories, local ZIP files, and remote ZIP URLs
- ๐ Automatic addon mounting during upgrade process
- ๐ฏ Enhanced upgrade workflow with custom module integration
Version 0.1.0 (Initial Release)
- โจ Initial release with core upgrade functionality
- โ Support for Odoo versions 10.0 through 18.0
- ๐ณ Docker-based isolated upgrade environment
- ๐ Rich CLI output with progress indicators
- ๐ URL download support for remote databases
- ๐ฆ Automatic packaging of upgraded databases
Made with โค๏ธ by Fasil | Powered by OpenUpgrade
โญ If you find this tool helpful, please star the repository!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file odooupgrader-0.3.0.tar.gz.
File metadata
- Download URL: odooupgrader-0.3.0.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29751e88a90e9b05972fd7c0facd6f4ce6679ee9656168a2772af0d45accba57
|
|
| MD5 |
35c61dcf864d5d2a569d5cbe20a3411c
|
|
| BLAKE2b-256 |
adb0c7f0fed56c43023baddc8b4bb21f5baf94dc82fce12fe6f2f58153ae45b7
|
Provenance
The following attestation bundles were made for odooupgrader-0.3.0.tar.gz:
Publisher:
publish-pypi.yml on fasilwdr/OdooUpgrader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
odooupgrader-0.3.0.tar.gz -
Subject digest:
29751e88a90e9b05972fd7c0facd6f4ce6679ee9656168a2772af0d45accba57 - Sigstore transparency entry: 995901514
- Sigstore integration time:
-
Permalink:
fasilwdr/OdooUpgrader@d73255dfe3bcd55f50fa6e924f31bca49295dba2 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/fasilwdr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@d73255dfe3bcd55f50fa6e924f31bca49295dba2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file odooupgrader-0.3.0-py3-none-any.whl.
File metadata
- Download URL: odooupgrader-0.3.0-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e82c1c7a0b18226220622605bb51531fab964213b807a427d068af52d37d5977
|
|
| MD5 |
44ce7492cbcb37682673287123b9f4f9
|
|
| BLAKE2b-256 |
c966fbbf2850f631c6ce4002cb66fffea86e4bfc4caaeb0d8b5ca74eb6753ec9
|
Provenance
The following attestation bundles were made for odooupgrader-0.3.0-py3-none-any.whl:
Publisher:
publish-pypi.yml on fasilwdr/OdooUpgrader
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
odooupgrader-0.3.0-py3-none-any.whl -
Subject digest:
e82c1c7a0b18226220622605bb51531fab964213b807a427d068af52d37d5977 - Sigstore transparency entry: 995901533
- Sigstore integration time:
-
Permalink:
fasilwdr/OdooUpgrader@d73255dfe3bcd55f50fa6e924f31bca49295dba2 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/fasilwdr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@d73255dfe3bcd55f50fa6e924f31bca49295dba2 -
Trigger Event:
release
-
Statement type: