Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

help with deploy odoo with docker

Naroči se

Get notified when there's activity on this post

This question has been flagged
4 Odgovori
1382 Prikazi
Avatar
Xiangxiang Zhang

I am using docker to deploy odoo19 but when I login I can only see apps and settings. Although I activate the dev mode, I can not see any more functions. Is there something wrong with my deployment? Thanks

0
Avatar
Opusti
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

Please refer to the links:

1. https://www.cybrosys.com/blog/how-to-install-odoo-16-in-docker

2. https://www.cybrosys.com/blog/how-to-install-odoo-using-docker


Hope it helps.

0
Avatar
Opusti
Avatar
Codesphere Tech
Best Answer

If it is a new database then you see only these options. You need to install the app to explore more.

0
Avatar
Opusti
Avatar
Xiangxiang Zhang
Avtor Best Answer

Yes, totally new deployment with new database.
I tried many times and each time I can only see APPs and Setting. 
Below are my deployment files.

---
(base) ubuntu@oracle-ampere:~/odoo19$ ls -al

total 24

drwxrwxr-x  4 ubuntu ubuntu 4096 Oct  5 11:28 .

drwxr-xr-x 19 ubuntu ubuntu 4096 Oct  5 10:14 ..

drwxrwxr-x  2 ubuntu ubuntu 4096 Oct  5 10:14 addons

drwxrwxr-x  2 ubuntu ubuntu 4096 Oct  5 11:29 config

-rw-rw-r--  1 ubuntu ubuntu 1369 Oct  5 10:20 docker-compose.yml

-rw-rw-r--  1 ubuntu ubuntu  125 Oct  5 11:28 .env

(base) ubuntu@oracle-ampere:~/odoo19$ cat .env

POSTGRES_PASSWORD=xxxxxxxxx

POSTGRES_DB=postgres

POSTGRES_USER=odoo

LANG=en_US.UTF-8

TZ=Pacific/Auckland

ODOO_DBNAME=odoo19

(base) ubuntu@oracle-ampere:~/odoo19$ cat config/odoo.conf

[options]

addons_path = /usr/lib/python3/dist-packages/odoo/addons,/mnt/extra-addons

proxy_mode = True

db_host = db

db_port = 5432

db_filter = ^%d$

workers = 2

limit_time_cpu = 120

limit_time_real = 240

log_level = info

logfile = False

(base) ubuntu@oracle-ampere:~/odoo19$ cat docker-compose.yml

version: "3.9"

services:

  db:

    image: postgres:15

    container_name: odoo19-db

    environment:

      POSTGRES_DB: ${POSTGRES_DB}

      POSTGRES_USER: ${POSTGRES_USER}

      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}

      TZ: ${TZ}

    healthcheck:

      test: ["CMD", "pg_isready", "-U", "odoo"]

      interval: 10s

      timeout: 5s

      retries: 5

    volumes:

      - pg-data:/var/lib/postgresql/data


  web:

    image: odoo:19.0@sha256:135083d15e23dcebb2b4449fd7f81f46966b407e3baef48bb278cde5b1956575

    container_name: odoo19-web

    depends_on:

      db:

        condition: service_healthy

    environment:

      HOST: db

      USER: ${POSTGRES_USER}

      PASSWORD: ${POSTGRES_PASSWORD}

      TZ: ${TZ}

      LANG: ${LANG}

      ODOO_RC: /etc/odoo/odoo.conf

    ports:

      - "8069:8069"       

    volumes:

      - odoo-data:/var/lib/odoo

      - ./config/odoo.conf:/etc/odoo/odoo.conf:ro

      - ./addons:/mnt/extra-addons:ro

    healthcheck:

      test: ["CMD", "curl", "-f", "http://localhost:8069/web/login"]

      interval: 15s

      timeout: 5s

      retries: 10


volumes:

  pg-data:

  odoo-data:

0
Avatar
Opusti
Codesphere Tech

Hello,
It looks like the issue is related to Docker. Sometimes, when you make changes inside the Docker environment and re-run the container, everything reverts to its previous state. You should check the PostgreSQL configuration within the Docker setup.
Also for test purpose, remove the extra-addons if you have not required.
If you don't get the solution ,feel free to connect with us.
Thanks.

Avatar
Hamza Benzaoui
Best Answer

Is it a new database? if so did you installed the app? if not did you changes any access rights?

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now