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
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)
41629
11.01.2020 21:11
- SMTP server on VPS and port 25 opening
28998
10.12.2025 13:59
- Nameserver for my vps
27159
07.08.2018 11:35
- Remote access to MySQL database
26611
16.01.2018 15:29
- Mumbai VPS data-center availability
26304
23.12.2025 04:48
- Change server location
22606
06.11.2020 10:16
- IPv6 Configuration
21937
30.07.2018 12:50
- Redirect domain to vps
21931
03.01.2018 22:32
- Upgrading your VPS - need to extend your disk? The Easy way!
21155
14.02.2019 16:06
- VPS stuck in “Saving…” for over 24 hours – No SSH, No KVM, No Rescue
20951
10.01.2026 22:36