Containerizing Applications.
Volume Mounting
This process entails pulling an existing image, creating a container from it, and then use a volume mount to map the files for your static website from the host into the container you created.
Container Injects
This process involves copying the files into the container file system. So, instead of a volume mount, you'll copy the files from the host file system into the container file system (much like you might do with SSH). This approach is like using a 'cp' command to securely copy files onto another computer.
More on copying into container
Bake into an Image
This process involves baking the static websites files in an image so that when we pull down the image it already has the files you need inside it. This way you don't have to worry about getting the files into the container when you're ready to use it. Simply start the container and everything you need will be up and running.