How does a running Docker container modify the environment variables when executing the run command
Into the container
docker exec -it containerId/Names /bin/bash
, and then useexport
Just modify itexport ENV='value'
How does a running Docker container modify the environment variables when executing the run command
Into the container
docker exec -it containerId/Names /bin/bash
, and then useexport
Just modify itexport ENV='value'