hi all,
I just installed odoo 12 on ubuntu 18 under docker container using the docker-compose.yml file below,
and I want to install extra module addons, I executed some commands to mount extra addons folder but always I have errors
docker-compose.yml
____________________________________________________________________
version: '2'
services:
db:
image: postgres:10.0
environment:
- POSTGRES_PASSWORD=odoo
- POSTGRES_USER=odoo
- POSTGRES_DB=postgres
restart: always # run as a service
odoo12:
image: odoo:12.0
depends_on:
- db
ports:
- "8071:8069"
tty: true
command: -- --dev=reload
# command: odoo scaffold /mnt/extra-addons/test_module
volumes:
- ./addons:/mnt/extra-addons
- ./etc:/etc/odoo
restart: always # run as a service
________________________________________
hope my demand is clear to be resolved ;