jekyll-docker-compose-hello-world

jekyll-docker-compose-hello-world

A simple docker-compose project that contains a Hello World jekyll website

Jekyll Hello World App

This repository contains a simple Jekyll Hello World app with a custom homepage and style. The project is set up to work with Docker, so you don't need to install Jekyll on your host machine.

Prerequisites

Getting Started

  1. Clone this repository:
git clone https://github.com/louispaulet/jekyll-docker-compose-hello-world.git
cd jekyll-docker-compose-hello-world

Replace yourusername and your-repository with the appropriate GitHub username and repository name.

  1. Build and run the Jekyll app using Docker Compose:
docker-compose up --build
  1. Open your web browser and navigate to http://localhost:4000 to view the Jekyll Hello World app.

Structure

The project has the following structure:

.
├── _config.yml # Jekyll configuration file
├── assets
│ └── css
│ └── styles.css # Custom CSS styles
├── Gemfile # Ruby gem dependencies
├── Dockerfile # Dockerfile to build the Jekyll app image
├── docker-compose.yml # Docker Compose configuration to run the Jekyll app
└── index.md # Homepage content

License

This project is released under the MIT License.