Skip to Content
Menu
This question has been flagged

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


Avatar
Discard
Related Posts Replies Views Activity
0
Sep 21
1564
0
Oct 24
329
2
Sep 23
5699
1
Sep 22
1141
0
Feb 22
1961