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
The local.env file uses in non-fully containerized RODEO deploys is not used in the container. This is inconsistent behavior with how local.env is usually used, as it is mounted into /src/local.env.
The solution is not quite as simple as "just mount it into /src/local.env" as the deploy docker might have a local.env for deploy purposes.
So the right answer would be to mount it in somewhere, and use both local.env, using the host local.env first or second? First would be easier, but local.env's don't typically used the :${FOO=bar} pattern, so second takes precedence. We could just say that in the case of RODEO local.env, it should use :${f=b} notation
The text was updated successfully, but these errors were encountered:
The
local.env
file uses in non-fully containerized RODEO deploys is not used in the container. This is inconsistent behavior with howlocal.env
is usually used, as it is mounted into/src/local.env
.The solution is not quite as simple as "just mount it into
/src/local.env
" as the deploy docker might have alocal.env
for deploy purposes.So the right answer would be to mount it in somewhere, and use both
local.env
, using the hostlocal.env
first or second? First would be easier, but local.env's don't typically used the:${FOO=bar}
pattern, so second takes precedence. We could just say that in the case of RODEO local.env, it should use:${f=b}
notationThe text was updated successfully, but these errors were encountered: