From 609dcebb34467d1a80620c7dc553545f232b0796 Mon Sep 17 00:00:00 2001 From: Jeff Triplett Date: Sat, 16 Aug 2025 13:37:52 -0500 Subject: [PATCH] :wrench: Update docker compose commands and mounts --- compose.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/compose.yml b/compose.yml index 6396210..e94c4f7 100644 --- a/compose.yml +++ b/compose.yml @@ -2,18 +2,16 @@ services: devd: image: ghcr.io/jefftriplett/devd:latest - command: --livewatch - expose: - - 8000 + command: ["--livewatch"] init: true ports: - 8000:8000 volumes: - - .:/srv/jekyll + - .:/srv/jekyll:cached jekyll: image: jekyll/jekyll:latest - command: jekyll serve --drafts --force_polling --watch --port 4000 + command: ["jekyll", "serve", "--host", "0.0.0.0", "--port", "4000", "--livereload", "--drafts", "--force_polling"] environment: - BUNDLE_PATH=/usr/local/bundle expose: