Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
3501 Переглядів

How do I access odoo directories to add custom modules? runs with Docker on Mac M1

Аватар
Відмінити
Найкраща відповідь

You have to specify a volume or bind mount for you addons, for example:

volumes:
- config:/etc/odoo
- extra-addons:/mnt/extra-addons
- data:/var/lib/odoo

In your /etc/odoo/odoo.conf add the following:

[options]
addons_path = /mnt/extra-addons

After this restart your container and you should be able to install custom addons. For more information you can also check out my blog post about this topic.

I hope this helps.

Аватар
Відмінити
Автор Найкраща відповідь
I already have my instance installed and configured through the terminal but I can't find the docker directories on my mac m1



Аватар
Відмінити

Your Docker volumes can usually be found under /var/lib/docker/volumes, but I don't know if this also applies for Mac

Автор


Working on linux I find them in that location but on my MAC M1 they are not there and I can't find them

Related Posts Відповіді Переглядів Дія
4
груд. 24
16865
4
груд. 23
46176
1
січ. 23
3788
1
бер. 24
6638
1
лют. 21
2848