From cf76d23b163439b04f3d244de00bd5bbd9298aea Mon Sep 17 00:00:00 2001 From: Winston Smith Date: Mon, 8 Jan 2024 22:17:43 +0100 Subject: [PATCH] feat: ruby bundle directory as volume Bundled gems now in persistent volume, dramaticaly increasing service boot. --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 9c61d85..b19bfda 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,3 +12,7 @@ services: - ${WWW_PORT:-4000}:4000 volumes: - ./jekyll:/app/jekyll + - jekyll_bundle:/usr/local/bundle + +volumes: + jekyll_bundle: