Skip to Content
Menu
This question has been flagged
1835 Views

I had installed odoo on a VPS, recently I decided to switch to docker odoo. So I made a backup of the VPS to restore it to the version with docker. After restoration I have an internal server error. It seems that the access information to the base or other does not match, I don't really know. i need help please


My docker-compose.yml


version: "3"services:   odoo:      image: odoo:15.0      env_file: .env      depends_on:         - postgres      ports:         - "127.0.0.1:8070:8069"      volumes:         - data-example1:/var/lib/odoo   postgres:      image: postgres:13      env_file: .env      ports:         - "5440:5432"      volumes:         - db-example1:/var/lib/postgresql/data/pgdata
volumes:   data-example1:   db-example1:

Avatar
Discard