Hi,
I installed docker (Odoo14) images using the following two commands in https://hub.docker.com/_/odoo
docker run -d -e POSTGRES_USER=odoo -e POSTGRES_PASSWORD=odoo -e POSTGRES_DB=postgres --name db postgres:10
docker run -p 8069:8069 --name odoo --link db:db -t odoo
It works perfectly and I'm playing around with it. Also my data seems to persist. But I often see talk about volumes that need to be attached in order to achieve persistence. What's this all about? Am I doing something wrong and not realizing it?