You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a docker-compose file using this docker file and
protractor:
...
environment:
- PGHOST=db
When I run the protractor container the PGHOST variable is not set. I believe this is because of the use of sudo in sudo -u protractor xvfb-run --server-args="-screen 0 ${SCREEN_RES}" -a protractor $@
This should probably be sudo -E -u protractor ... to preserve the environment.
The text was updated successfully, but these errors were encountered:
I have a docker-compose file using this docker file and
When I run the protractor container the PGHOST variable is not set. I believe this is because of the use of sudo in
sudo -u protractor xvfb-run --server-args="-screen 0 ${SCREEN_RES}" -a protractor $@
This should probably be
sudo -E -u protractor ...
to preserve the environment.The text was updated successfully, but these errors were encountered: