Odoo server with integrated postgres database
This is a guide for the deployment of this odoo server, no support will be provided
Check-out Installation for more information.
Needed programs
docker
docker-compose
Execute the following commands
git clone https://github.com/Javiito32/odoo-server.git
cd odoo-server
docker-compose up
Instead of docker-compose up you can use docker-compose up -d to start it in detached mode.
After the installation you can start and stop it with docker-compose start and docker-compose stop
Use docker-compose down to remove the odoo server, postgres database, and docker network's
docker-compose up is not recommended, check Start ✔️ and Stop 🛑 instead
✔️ This won't remove the addon's addons or the data of the database postgres.
✨ The following directories are not working, still under development config and web
🧹 To clean the database, remove all the contents of the postgres folder.
Now the Odoo Server should be available at localhost:8069
⚡ You might set up your own configuration, the name of the database can't be postgres or any other reserved word.
The connection between Odoo and Postgres is made via the created docker's network, you can also access it with this connection string
Server=localhost;Port=3306;Database=postgres;Uid=odoo;Pwd=odoo;
You can modify the password and database name on docker-compose.
This project is under AGPL-3.0-only - Checkout LICENSE for more detail
⌨️ with ❤️ by Javiito32 😊