I am trying to deploy my odoo application using docker-compose on ovh vps, I installed docker and docker-compose from the official documentation and simply run docker-compose up -d but I got this error:
!Dg7RZ|690x106
Here is the file docker-compose.yml
version: '3.3'
services:
web:
image: odoo:13
depends_on:
- db
ports:
- "8069:8069"
volumes:
- odoo-web-data:/var/lib/odoo
- ./custom_addons:/mnt/extra-addons
environment:
- PASSWORD_FILE=/run/secrets/postgresql_password
secrets:
- postgresql_password
db:
image: postgres
environment:
- POSTGRES_DB=postgres
- POSTGRES_PASSWORD_FILE=/run/secrets/postgresql_password
- POSTGRES_USER=odoo
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- odoo-db-data:/var/lib/postgresql/data/pgdata
secrets:
- postgresql_password
volumes:
odoo-web-data:
odoo-db-data:
secrets:
postgresql_password:
file: odoo_pg_pass
and the netstat command doesn't show me any entry with the port 8069. This runs perfectly on my local machine URL (ubuntu 20.04) but I can't figure out the reason why it doesn't work on ubuntu machine on VPS OVH I will be grateful if you can help me with this matter. Thank you