A static Jekyll site for the BCDA splash page: https://sandbox.bcda.cms.gov
It is assumed that the environment already has these installed:
$ gem install bundler
<—install Gem bundler$ bundle install
<—install Gem bundles
Jekyll builds the CSS and HTML pages. Run bundle exec jekyll serve
from the project root for a local build. By default, the site will run in http://localhost:4000/
. You can also run bundle exec jekyll build
to compile the site files into the _site
directory.
Consistent and simple build process:
docker-compose -f docker-compose.yml build static_site
docker-compose -f docker-compose.yml run --rm static_site
This process uses a Docker container to execute bundle exec jekyll build
, compiling site files ino the same _site
directory used when executing this command on the Docker host. Advantage here is that there's no need to install ruby or any dependencies on the machine building the static site — Docker takes care of all that.
To host the site in Docker, accessible at http://localhost:4000/
:
docker-compose run --publish 4000:4000 --rm --entrypoint "bundle exec jekyll serve -H 0.0.0.0" static_site
This is a convenience meant to ease integration of static site builds with the larger BCDA CI/CD pipeline.