How to Install Odoo 17 Using Docker
In this guide, we’ll walk you through the steps to install Odoo 17 using Docker and Docker Compose.
1. Run the Installation Script
Start by downloading and running the installation script specifically designed for Odoo 17 with the following command:
$ curl -s https://raw.githubusercontent.com/minhng92/odoo-17-docker-compose/master/run.sh | sudo bash -s odoo17 10017 20017
2. Set Permissions for Folders
After the script completes, navigate to the created Odoo directory and adjust the permissions for the necessary folders:cd odoo17
$ sudo chmod -R 777 addons
$ sudo chmod -R 777 etc
$ sudo chmod -R 777 postgresql
By following these steps, Odoo 17 will be installed and ready to use on your system with Docker and Docker Compose.