I have a running container with an environment variables file mounted as such:
docker run -d --env-file ./env.list my/image
and everything is working well, now I have updated my ./env.list
file and would like the updated files to be reflected. Tried restarting the container but that didn't work.