Sign inSign up

aniven/odoo-env

By aniven

Updated over 1 year ago

Odoo environment without source code

Image
0

821

aniven/odoo-env repository overview

About this image

Docker image for Odoo 14[^1]/15 environment without source code. You must mount the container directory /usr/lib/python3/dist-packages/odoo and put the source code[^2] here.

docker-compose.yml Example:

version: '2'
services:
  odoo-env:
    container_name: odoo-env
    image: aniven/odoo-env:14
    restart: unless-stopped
    ports:
      - 8069:8069
      - 8071:8071
      - 8072:8072
    environment:
      - HOST=172.19.0.10
      - USER=odoo
      - PASSWORD=odoo
    volumes:
      - ./conf:/etc/odoo
      - ./packages:/usr/lib/python3/dist-packages/odoo
      - ./web-data:/var/lib/odoo
      - ./extra-addons:/mnt/extra-addons
    network_mode: bridge

You must set the owner ID to 101 for the mounted volume, e.g.: chown 101:101 ./web-data

  1. Version 14.0.20210114 is last condensed version (Not contain additional website themes)
  2. The source code is all files in the directory where addons is located

Tag summary

Content type

Image

Digest

sha256:b204b9582

Size

341.4 MB

Last updated

over 1 year ago

docker pull aniven/odoo-env