From 3cd057def7cf365f43bb86489da554faccd97433 Mon Sep 17 00:00:00 2001 From: Kamil Aronowski Date: Fri, 12 May 2023 19:53:48 +0200 Subject: [PATCH] Reference software versions that build the site properly The instructions for using the jekyll/jekyll:pages podman image were no longer working for me. This is most likely due to the image being a rolling release rather than a fixed release and in the meantime changes got introduced that broke building the site locally. The compose.yml file got a change introduced so from now on the images is always of a fixed version. Furthermore, README.md has been updates so it references the environment used for testing as of today. --- README.md | 3 +-- compose.yml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d36c15a1..01f940f4 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,7 @@ Git submodules for content: ### Podman Compose -These instructions have been tested on a Fedora 33 qube. Podman is not -available in Debian 10. You must use a Fedora-based machine or Debian 11. +These instructions have been tested on a Fedora 36 qube. 1. Install `podman` and `podman-compose`. diff --git a/compose.yml b/compose.yml index fc9c9f2c..0d33adc6 100644 --- a/compose.yml +++ b/compose.yml @@ -1,6 +1,6 @@ services: jekyll: - image: jekyll/jekyll:pages + image: jekyll/jekyll:4.2.0 command: jekyll serve ports: - 4000:4000