In this example it is demonstrated how to inject environment variables into a static website. A more detailed description is found in this blog post.
docker build -t ssi-example .
docker run --rm -it -p 9000:80 -e MY_NAME="world" -e MY_GREETING="hello" ssi-example