You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using ODOO in a minimal docker-compose setup ( See below )
Unfortunately the database manager does not work. When I open it /web/database/manager, I get the error below and the Backup, Duplicate and Delete buttons do not work.
I am using ODOO in a minimal docker-compose setup ( See below )
Unfortunately the database manager does not work. When I open it /web/database/manager, I get the error below and the Backup, Duplicate and Delete buttons do not work.
Any ideas?
ERROR:
Uncaught ReferenceError: $ is not defined
http://localhost:8069/web/static/src/public/database_manager.js:1
database_manager.js:1:1
http://localhost:8069/web/static/src/public/database_manager.js:1
version: '3.1'
services:
db:
image: postgres:16
volumes:
- ./postgres:/var/lib/postgresql/data/
environment:
- POSTGRES_DB=postgres
- POSTGRES_PASSWORD=odoo
- POSTGRES_USER=odoo
web:
image: odoo:17.0
depends_on:
- db
volumes:
- ./odoo-web-data:/var/lib/odoo
- ./config:/etc/odoo
ports:
- "8069:8069"
The text was updated successfully, but these errors were encountered: