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).
This commit is contained in:
Erick Ruiz de Chavez 2024-12-29 07:41:32 -05:00
parent fe02945cb2
commit 6911ad6f64
3 changed files with 7 additions and 3 deletions

View file

@ -3,7 +3,7 @@ GEM
specs: specs:
addressable (2.8.7) addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0) public_suffix (>= 2.0.2, < 7.0)
bigdecimal (3.1.8) bigdecimal (3.1.9)
colorator (1.1.0) colorator (1.1.0)
commonmarker (0.23.11) commonmarker (0.23.11)
concurrent-ruby (1.3.4) concurrent-ruby (1.3.4)
@ -81,4 +81,4 @@ DEPENDENCIES
jekyll-feed (~> 0.12) jekyll-feed (~> 0.12)
BUNDLED WITH BUNDLED WITH
2.6.1 2.6.2

View file

@ -1,12 +1,16 @@
services: services:
jekyll: jekyll:
build: . build:
context: .
dockerfile: Dockerfile.jekyll
platform: linux/amd64 platform: linux/amd64
ports: ports:
- 4000:4000 - 4000:4000
- 35729:35729 - 35729:35729
volumes: volumes:
- .:/app - .:/app
gemini: gemini:
build: build:
context: . context: .