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
It should be -it, rather than --it, since the first one is invalid
You also need to specify -e HOST="0.0.0.0" and -e PORT="5000" in order for the app to start.
Additionally, you might want to add:
--rm flag
When not explicitly passing a value for the env parameters (e.g. just -e CLIENT_ID) the values from the user's local environment are being used, which might be preferable (because easier), since the user sourced the .env file before anyway.
The text was updated successfully, but these errors were encountered:
In
README.md
there is the following command:There is two issues with that:
-it
, rather than--it
, since the first one is invalid-e HOST="0.0.0.0"
and-e PORT="5000"
in order for the app to start.Additionally, you might want to add:
--rm
flag-e CLIENT_ID
) the values from the user's local environment are being used, which might be preferable (because easier), since the user sourced the.env
file before anyway.The text was updated successfully, but these errors were encountered: