تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
6143 أدوات العرض

Ubuntu 18.04. I am using [odoo docker files][1]

docker-compose:

version: '3.7'
services:
  web:
    build: ./build
    depends_on:
      - mydb 
    ports:
      - "18275:8069"
    environment:
      - HOST=mydb
      - USER= us
      - PASSWORD=pw
    restart: always
    volumes:
      - ./odoo:/usr/lib/python3/dist-packages/odoo
      - ./config:/etc/odoo
      - ./extra-addons:/mnt/extra-addons
  mydb:
    image: postgres:12.1
    environment:
      - POSTGRES_DB=postgres
      - POSTGRES_PASSWORD=pw
      - POSTGRES_USER=us
    restart: always

In ./build directory I have docker files from odoo github repository.

I have problems with `volumes: ./odoo:/usr/lib/python3/dist-packages/odoo`

My odoo container is restarting with logs:

    web_1   | Traceback (most recent call last):
    web_1   | File "/usr/bin/odoo", line 8, in <module>
    web_1   | odoo.cli.main()
    web_1   | AttributeError: module 'odoo' has no attribute 'cli'

I think it's permission issue. I added some permission, I changed user and group owner and nothing...

What should I do to create this volume?

Without this one volume everything works great


[1]: https://github.com/odoo/docker/tree/master/13.0


الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
سبتمبر 21
2101
0
أكتوبر 24
2323
2
سبتمبر 23
7060
1
سبتمبر 22
2610
0
فبراير 22
3209