Odoo - Open source ERP and CRM
Everything you need to deploy Odoo with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Odoo up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Odoo with:
blastdock init odoo
Interactive mode:
blastdock init odoo -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Odoo installation with these configuration options.
HTTP port
Longpolling port
PostgreSQL password
PostgreSQL user
PostgreSQL database
Odoo admin password
Complete Docker Compose configuration for Odoo deployment.
version: '3.8'
services:
odoo:
image: odoo:latest
container_name: {{ project_name }}_odoo
restart: unless-stopped
depends_on:
- postgres
ports:
- "8069"
- "8072"
environment:
0: HOST=postgres
1: PORT=5432
2: USER={{ postgres_user }}
3: PASSWORD={{ postgres_password }}
4: ADMIN_PASSWORD={{ admin_password }}
volumes:
- /var/lib/odoo
- /etc/odoo
- /mnt/extra-addons
networks:
- odoo_network
postgres:
image: postgres:14-alpine
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_USER={{ postgres_user }}
1: POSTGRES_PASSWORD={{ postgres_password }}
2: POSTGRES_DB={{ postgres_db }}
volumes:
- /var/lib/postgresql/data
networks:
- odoo_network
volumes:
odoo_data:
driver: local
postgres_data:
driver: local
networks:
odoo_network:
driver: bridge