senaite / senaite.docker

SENAITE Docker Container
GNU General Public License v2.0
48 stars 38 forks source link

Start docker container with multiple addons #22

Closed veritiegroup closed 1 year ago

veritiegroup commented 1 year ago

It doesn't seem to be possible to define more than one addon with the ADDONS environment variable.

I have tried, for example ... -e ADDONS="senaite.storage,senaite.patient" ... -e ADDONS="senaite.storage;senaite.patient" ... -e ADDONS="senaite.storage\nsenaite.patient"

But none of these work. Is this currently possible?

ramonski commented 1 year ago

Please use spaces instead, e.g. -e ADDONS="senaite.storage senaite.patient"

veritiegroup commented 1 year ago

Ah, spaces! Didn't try that. Great thank you!