Substituting ENV vars

Changes to the examples

Commands

docker container run -it jfahrer/lb:latest bash
cat example_file
export VAR1='test' OTHER='some text'
envsubst < example_file
envsubst '$OTHER' < example_file
envsubst '$OTHER' < example_file > example_file.new
cat example_file.new

Testing the image

Making it dynamic