I am trying to install custom modules from OCA GitHub to my initial setup which is installed via Docker container.
I am quite lost on how to perform to install the modules in my environment. I have done my initial odoo setup up and running via https://www.digitalocean.com/community/tutorials/how-to-install-odoo-on-ubuntu-20-04-with-docker.
The system is up and running without issue but I am not able to install custom modules from third parties like OCA.
My docker-compose.yml file:
version: '3'
services:
odoo:
image: odoo:15.0
env_file: .env
depends_on:
- postgres
ports:
- "127.0.0.1:8069:8069"
volumes:
- data:/var/lib/odoo
- ./addons:/mnt/extra-addons
postgres:
image: postgres:13
env_file: .env
volumes:
- db:/var/lib/postgresql/data/pgdata
volumes:
data:
db:
File Directory right now:
./addons ----> I am placing the module files inside this folder.
./docker-compose.yml
then I run the docker-compose up -d
then I go to odoo and update list but cannot see the modules.
Thank you.
`addons_path = /mnt/extra-addons`
`data_dir = /var/lib/odoo`
.... I also added `- ./config:/etc/odoo` to docker-compose.yml but I cannot see the addons that I have put inside addons folder inside the app – jakarina Jun 18 '22 at 15:55