Skip to Content
Menu
This question has been flagged
2 Replies
1462 Views


Docker stack

version: "3.8"
services:
  db:
    image: postgres:15
    environment:
      - POSTGRES_DB=postgres
      - POSTGRES_USER=odoo
      - POSTGRES_PASSWORD=odoo
      - PGDATA=/var/lib/postgresql/data/pgdata
    volumes:
      - odoo-db-data:/var/lib/postgresql/data/pgdata
    networks:
      - odoo_network

  odoo-web:
    image: odoo:17.0
    depends_on:
      - db
    environment:
      - HOST=db
      - USER=odoo
      - PASSWORD=odoo
    volumes:
      - odoo-web-data:/var/lib/odoo
    networks:
      - traefik_public
      - odoo_network
    deploy:
      labels:
        - traefik.enable=true
        - traefik.http.routers.odoo-web.entrypoints=https
        - traefik.http.services.odoo-web.loadbalancer.server.port=8069
volumes:
  odoo-web-data:
  odoo-db-data:

networks:
  odoo_network:
    driver: overlay
  traefik_public:
    external: true

odoo-web container logs

2024-04-04 11:05:56,667 1 ERROR odoo_db odoo.http: Exception during request handling.

Traceback (most recent call last):

File "/usr/lib/python3/dist-packages/odoo/http.py", line 1765, in _serve_db

return service_model.retrying(self._serve_ir_http, self.env)

File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 133, in retrying

result = func()

File "/usr/lib/python3/dist-packages/odoo/http.py", line 1777, in _serve_ir_http

ir_http = self.registry['ir.http']

File "/usr/lib/python3/dist-packages/odoo/modules/registry.py", line 213, in __getitem__

return self.models[model_name]

KeyError: 'ir.http'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

File "/usr/lib/python3/dist-packages/odoo/http.py", line 2189, in __call__

response = request._serve_db()

File "/usr/lib/python3/dist-packages/odoo/http.py", line 1769, in _serve_db

exc.error_response = self.registry['ir.http']._handle_error(exc)

File "/usr/lib/python3/dist-packages/odoo/modules/registry.py", line 213, in __getitem__

return self.models[model_name]

KeyError: 'ir.http'

2024-04-04 11:05:56,668 1 INFO odoo_db werkzeug: 10.0.3.3 - - [04/Apr/2024 11:05:56] "GET /favicon.ico HTTP/1.1" 500 - 2 0.003 0.022


When I try to access it through the browser I get:
"Internal Server Error

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application."

Avatar
Discard
Best Answer

Hi, if you're looking to install Odoo on your machine using Docker/Portainer, you can put this file in your stack:

version: '3.8'

services:

  odoo:

    image: odoo:17

    ports:

      - "8069:8069"

    depends_on:

      - db

    volumes:

      - odoo_data:/var/lib/odoo

      - odoo_custom_addons:/mnt/extra-addons

    environment:

      - POSTGRES_USER=odoo

      - POSTGRES_PASSWORD=odoo

      - POSTGRES_DB=postgres

      - PGHOST=db


  db:

    image: postgres:12

    environment:

      - POSTGRES_USER=odoo

      - POSTGRES_PASSWORD=odoo

      - POSTGRES_DB=postgres

    volumes:

      - odoo_db_data:/var/lib/postgresql/data


volumes:

  odoo_data:

  odoo_custom_addons:

  odoo_db_data:


Hope this help you.


Avatar
Discard
Best Answer

Hello,

Just this error message and the containers configuration is not enough to give a good answer.

Please look at you odoo.conf file and share it without any personal or passwords information contained in it so that we may help out.

Also checkout the groups and owners of the files the server is trying to access. Sometimes a root:root creeps in that throws everything into the wind. Change that to odoo:odoo, etc...

Please take a look at https://www.odoo.com/forum/help-1/faq you'll be surprised how much more users will be able to lend a helping hand if you follow these simple guidelines.

Avatar
Discard