Use local mount and drop commands onto new lines

This commit is contained in:
Luke Murphy 2020-05-01 11:21:26 +02:00
parent b72febc4c8
commit b87d648a7d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 8 additions and 3 deletions

View File

@ -3,7 +3,12 @@ version: "3.7"
services:
jekyll:
command: |
jekyll serve --watch --force_polling --verbose --config _config_dev.yml --trace
command: >
jekyll serve \
--watch \
--force_polling \
--verbose \
--config _config_dev.yml \
--trace
volumes:
- .:/srv/jekyll
- ".:/srv/jekyll"