I am trying to source a .env file, from inside a conditional entrypoint.sh script which, part of it, looks like this:
if [ -f "some-env-file.env" ]; then
source some-env-file.env
a simple echo of an environment variable found inside the .env file, just after the above source command, outputs the correct value, and the operations provided after in the entrypoint script, are performed successfully.
However, when I do docker exec -it
inside the instantiated container, env file looks like that it isn't sourced. Only when I source it again from there, I get the desirable results. (More specifically, env file is used to point to a specific runtime environment for python. So after entering the container, python is called correctly only when I source the env file again).
What am I doing wrong?
For reference, these are the last lines of my Dockerfile (nothing special about it):
COPY ./entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
The container instantiation is done with a docker-compose
yaml.
Thanks in advance and sorry if this has been asked before.
Adding this to my
entrypoint.sh
fixed the problem: