Replies: 3 comments 2 replies
|
Have you tried something like this? docker run --rm -it -e ENV_NAME=te_env your-docker-image |
0 replies
|
If you want an environment automatically activated on |
0 replies
|
I have similar use-case. I'm currently activating the default For example, I want to do something like the following in my entrypoint: |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hey. So in our docker image with micromamba as the base image, we use the command
And then after that, in our build we also install a couple more micromamba environments.
The docker builds perfectly but upon interaction it starts with the environment as rmg_env (which is to be expected). However, we want it so that upon entry of user, they will start off with one of the other installed environments. More specifically,
t3_env.Is it possible to do this?
All reactions