├── .gitignore ├── 14.0 ├── Dockerfile ├── entrypoint.sh ├── odoo.conf └── wait-for-psql.py ├── 15.0 ├── Dockerfile ├── entrypoint.sh ├── odoo.conf └── wait-for-psql.py ├── 16.0 ├── Dockerfile ├── entrypoint.sh ├── odoo.conf └── wait-for-psql.py ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /14.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/14.0/Dockerfile -------------------------------------------------------------------------------- /14.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/14.0/entrypoint.sh -------------------------------------------------------------------------------- /14.0/odoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/14.0/odoo.conf -------------------------------------------------------------------------------- /14.0/wait-for-psql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/14.0/wait-for-psql.py -------------------------------------------------------------------------------- /15.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/15.0/Dockerfile -------------------------------------------------------------------------------- /15.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/15.0/entrypoint.sh -------------------------------------------------------------------------------- /15.0/odoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/15.0/odoo.conf -------------------------------------------------------------------------------- /15.0/wait-for-psql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/15.0/wait-for-psql.py -------------------------------------------------------------------------------- /16.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/16.0/Dockerfile -------------------------------------------------------------------------------- /16.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/16.0/entrypoint.sh -------------------------------------------------------------------------------- /16.0/odoo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/16.0/odoo.conf -------------------------------------------------------------------------------- /16.0/wait-for-psql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/16.0/wait-for-psql.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minionhub/odoo-docker/HEAD/README.md --------------------------------------------------------------------------------