Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
6132 Weergaven

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
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
sep. 21
2099
0
okt. 24
2316
2
sep. 23
7058
1
sep. 22
2608
0
feb. 22
3207