From 6911ad6f648584690b71b9656d486eae88246bff Mon Sep 17 00:00:00 2001 From: Erick Ruiz de Chavez Date: Sun, 29 Dec 2024 07:41:32 -0500 Subject: [PATCH] Rename jekyll's docker file Since this is no longer a Jekyll-only site I decided to rename the Dockerfile used for the Jekyll site to Dockerfile.jekyll to be consistent with the Gemini Dockerfile (Dockerfile.gemini). --- Dockerfile => Dockerfile.jekyll | 0 Gemfile.lock | 4 ++-- compose.yaml | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) rename Dockerfile => Dockerfile.jekyll (100%) diff --git a/Dockerfile b/Dockerfile.jekyll similarity index 100% rename from Dockerfile rename to Dockerfile.jekyll diff --git a/Gemfile.lock b/Gemfile.lock index d3fffc1..1183025 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,7 +3,7 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) - bigdecimal (3.1.8) + bigdecimal (3.1.9) colorator (1.1.0) commonmarker (0.23.11) concurrent-ruby (1.3.4) @@ -81,4 +81,4 @@ DEPENDENCIES jekyll-feed (~> 0.12) BUNDLED WITH - 2.6.1 + 2.6.2 diff --git a/compose.yaml b/compose.yaml index cb0df71..8261a42 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,12 +1,16 @@ services: + jekyll: - build: . + build: + context: . + dockerfile: Dockerfile.jekyll platform: linux/amd64 ports: - 4000:4000 - 35729:35729 volumes: - .:/app + gemini: build: context: .