Bernhard Lukassen
Bernhard Lukassen

Reputation: 11

odoo docker multiple instances

Running multiple ODOO instances with docker works, but the instance which in not linked to the port 8069 doesn't load the CSS definitions:

$ docker run -p 8075:8069 --name odoo2 --link db:db -t odoo

e.g. 'http://address.of.server:8075'

Which Setting is missing?

Upvotes: 1

Views: 2041

Answers (1)

PyGuy
PyGuy

Reputation: 551

When using nonstandard ports, you should perform some additional configuration.

https://docs.docker.com/samples/library/odoo/

Please note that for plain use of mails and reports functionalities, when the host and container ports differ (e.g. 8070 and 8069), one has to set, in Odoo, Settings->Parameters->System Parameters (requires technical features), web.base.url to the container port (e.g. 127.0.0.1:8069).

Upvotes: 1

Related Questions