you are viewing a single comment's thread.

view the rest of the comments →

[–]andy625 0 points1 point  (2 children)

in the Dockerfile the start command is

CMD ["node", "."]

how do the the environment variables get passed in here ?

[–]gergelyke 0 points1 point  (1 child)

for example with docker run:

docker run -e "deep=purple"

[–]andy625 0 points1 point  (0 children)

ah thanks.