Odoo is an open source ERP and CRM software written in python. To install Odoo using docker, first install docker using
1 |
wget -qO- https://get.docker.com/ | sh |
Odoo use PostgreSQL server to store database. Lets create a postgres docker container.
1 |
docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=your-password-here -e POSTGRES_DB=postgres --name odoo-db postgres:10 |
In above command, replace your-password-here with a secure password. Create a Odoo container with
1 |
docker run -d -p 127.0.0.1:8069:8069 -p 127.0.0.1:8072:8072 --name odoo --link odoo-db:db -t odoo |
If container did not […]