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
Virtual Private Servers - Having problem with deploying an application with docker compose on VPS OVH
Related questions
- Installing Operating System from custom image on OVH VPS ( CentOS 8 Tutorial)
54602
11.01.2020 21:11
- SMTP server on VPS and port 25 opening
44938
10.12.2025 13:59
- Mumbai VPS data-center availability
43439
23.12.2025 04:48
- Nameserver for my vps
42197
07.08.2018 11:35
- Remote access to MySQL database
41077
16.01.2018 15:29
- VPS stuck in “Saving…” for over 24 hours – No SSH, No KVM, No Rescue
39275
10.01.2026 22:36
- Advice on products to run a simple website + CMS.
36702
07.01.2026 14:58
- VPS login and password not accepted. Reboot in Rescue Mode results in root and temp password not being accepted
34196
15.01.2026 20:04
- Change server location
34192
06.11.2020 10:16
- Redirect domain to vps
34124
03.01.2018 22:32