In the previous recipe, we ran the Odoo instance using two Docker containers, the PostgreSQL and Odoo containers. In this recipe, we will look at docker-compose. docker-compose is the tool used to manage the multi-container Docker application.
Running Odoo through docker-compose
Getting ready
In order to set up Odoo with the docker-compose tool, you will need to install docker-compose in your system. Execute the following command in the Terminal to install docker-compose in your system:
$ sudo apt-get install docker-compose
How to do it...
Follow these commands to run...