Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

help with deploy odoo with docker

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
4 Réponses
1367 Vues
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
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

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
Ignorer
Avatar
Codesphere Tech
Meilleure réponse

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

0
Avatar
Ignorer
Avatar
Xiangxiang Zhang
Auteur Meilleure réponse

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
Ignorer
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
Meilleure réponse

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

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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