From 4abe5cb54502fcdbe4d851c9d11635c30d106d72 Mon Sep 17 00:00:00 2001 From: Boris Wrubel Date: Wed, 8 Apr 2026 17:25:05 +0200 Subject: [PATCH] Update docker compose.yml because jekyll/jekyl image is not maintained and ruby 3.2 is necessary for dev environment --- docker-compose.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4c3bcc86..3f3dc3bb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,12 @@ services: testingconferences: - image: jekyll/jekyll:4.2.2 + image: ruby:3.2 container_name: tcorg ports: - - 4000:4000 # jekyll ui - command: sh -c "bundle install && jekyll serve" + - 4000:4000 + command: sh -c "gem install bundler:2.4.17 && bundle install && jekyll serve --host 0.0.0.0" restart: unless-stopped platform: linux/amd64 volumes: - ./:/srv/jekyll + working_dir: /srv/jekyll \ No newline at end of file