odoo-17-template is a dockerized version of Odoo Community 17
Make sure to have docker and docker-compose installed in your system.
Start by pulling the code from the repository
git clone https://github.com/esaCodeBJ/odoo-17-template.git
Note that you only need to run this command once
You have to run this command only one time, for building the system an lauching it
docker-compose up -d --build
To launch the system, in the project directory, just do :
docker-compose start
To stop the system, in the project directory, just do :
docker-compose stop
To delete all the created containers do :
docker-compose down
To delete all the created containers, volumes and images do
docker-compose down -v --rm all