uc-cdis/compose-services

NODE_ENV setting is ignored by dockerStart.sh of data-portal

taoliu opened this issue · 0 comments

- NODE_ENV=dev

The above code will set the NODE_ENV to "dev" in docker-compose.yml, however, this setting is ignored later on by data-portal. When "waitForContainers.sh" is called:

command: ["bash", "/var/www/data-portal/waitForContainers.sh"]

The script invokes "dockerStart.sh" in data-portal:

bash ./dockerStart.sh

The dockerStart.sh will reset NODE_ENV as "production":

https://github.com/uc-cdis/data-portal/blob/c211f476f4ebacfe03b36bf471fb910e72aa81b4/dockerStart.sh#L8

export NODE_ENV=production

The consequence is that the NODE_ENV setting in compose-service is ignored.