Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Odoo Docker Container - how to configure Pycharm

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
odoopycharm
2 Risposte
2974 Visualizzazioni
Avatar
Roshan

Ubuntu 20.04 .6 LTS, Pycharm Community

at last I have installed Odoo 16 on Docker and it runs fine on web browser, showing create database page from where i can start. during my search for it I found below is github link which I followed: (sorry, i can't add a link, but a modified link)

github(dot)com/bithabib/docker_course

now I want to configure Pycharm for development tasks, please help to configure Pycharm, also if I have multiple Docker Containers for multiple Odoo versions separately v15, v16, v17 etc. how to configure ? how to start/stop specific container? how to set custom addons folder? how to set addons path? etc.


with regards


0
Avatar
Abbandona
Avatar
Roshan
Autore Risposta migliore

Don't know when I will be able to Reply to the guy who Answered. when I am trying to use Comment below the Answer, it is not allowed to use Comment which is very disturbing, poster can't see my comment below his or her Answer. Pray for us please.

@Rodrigo Moya , please check below link. ( I can't enter Links, Screenshots, can't Comment on another users posts etc. )

www(.)odoo(.)com/forum/help-1/odoo-docker-containers-how-to-handle-separately-different-versions-268232

with regards

0
Avatar
Abbandona
Avatar
Rodrigo Moya
Risposta migliore

Hi Roshan : 

I I starting to work with pycharm but then I change to VS Code. I think is more friendly, specially when using dockers and python.


But in any case, the only thing that you need is to configure docker-compose.yml in a way that the addons and the pg_data folder make mounted outside the docker container. Then, you could configure pycharm to use the folder containing the addons, or the addon specifically you need.


Here is the docker-compose that I use. In my case, this configuration is practical, so if I need to work in another odoo version I just switch then in the file.


Hope it helps.




services:

​db:

​ ​container_name: odoodb

​ ​hostname: odoo15db

​ ​image: postgres:12

​environment:

​ ​- POSTGRES_USER=odoo15

​ ​- POSTGRES_PASSWORD=odoo15

​ ​- POSTGRES_DB=odoo15

​ ​- PGDATA = /var/lib/postgresql/data/pgdata

​networks:

- odoonetwork

ports:

​ ​- "5432:5432"

volumes:

​ ​- ./data/pgdata:/var/lib/postgresql/data

web:

​ ​container_name: odooweb

​ ​image: odoo:15

​ ​build: .

​ ​depends_on:

​ ​ ​- db

​ ​ports: - "8015:8015"

​ ​volumes:

​ ​ ​- odoo-web-data:/var/lib/odoo

​ ​ ​- ./config:/etc/odoo

​ ​ ​- ./addons:/mnt/addons

​ ​ ​- ./custom_addons:/mnt/custom_addons

​ ​ ​- ./data/odoo:/var/lib/odoo

​ ​environment:

​ ​ ​- VIRTUAL_HOST= www.odoo15.mac

​ ​command: "/usr/bin/odoo -c /etc/odoo/odoo.conf"

​ ​networks:

​ ​ ​- odoonetwork

​ ​volumes:

​ ​odoo-db-data:

​ ​odoo-web-data:

​ ​networks:

​ ​ ​odoonetwork:

​ ​driver: bridge

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
how to configure Pycharm for development
configure odoo pycharm
Avatar
Avatar
Avatar
3
mag 25
2434
(!!C-o-p-a!!)¿Cómo comunicarse con Copa Airlines en Panamá?
odoo
Avatar
0
nov 25
211
How do I go about this error? I am trying to uninstall a module
odoo
Avatar
0
nov 25
3329
(#iberia#)¿Cómo llamar a Iberia desde Panamá?
odoo
Avatar
0
ott 25
399
How to import product variants with my own external id when using dynamic creation mode Risolto
odoo
Avatar
Avatar
2
ago 25
3902
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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