Hosting Multiple Dockerized Websites on a Single Host
Video Demonstration
I've written about running multiple "dockerized" websites on a single host with the same port, but this required you to be able to assign multiple IPs to your host, which may not always be possible. The solution outlined below will allow you to deploy multiple websites on the same host by having the containers run on different public ports, but directing users to them through a reverse proxy. That way your users still don't need to type port numbers into the URI in order to get to your sites. This is a technique that I found on Jason Wilder's Blog. Its a simple solution which automatically registers and points to any website containers you spawn after the proxy container has initiated.
To get the frontend proxy running, you just need to run this command:
Then all you need to do is add the VIRTUAL_HOST environment variable to your container. This should be your site's domain.
Now you should be able to view your website by plugging that $VIRTUAL_HOST
into your browser (so long as your computer resolves that domain name to where you are hosting the container). Navigating to the server by IP won't work! Linux users can achieve this in a dev environment by just updating their /etc/hosts
file.
Docker PHP Website Template
To simplify the creation of dockerized websites, I created a github template, which revolves primarily around two scripts which can be placed into any project, without any modifications necessary, in order to build and then run the container.
Build Script
Below is my build script. It will move the Dockerfile above all of my project's files
Run Script
Settings
An example settings file that would go along with the previous two scripts is as follows
First published: 16th August 2018