Trying to get the volume work in prod

This commit is contained in:
Luke Murphy 2020-05-01 11:23:44 +02:00
parent b87d648a7d
commit 188b461c58
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 9 additions and 2 deletions

View File

@ -3,13 +3,20 @@ version: "3.7"
services:
jekyll:
command: |
jekyll serve --watch --verbose --config /srv/jekyll/_config_prod.yml --trace
command: >
jekyll serve \
--verbose \
--config _config_prod.yml \
--trace
configs:
- source: config-yml-prod-v1
target: /srv/jekyll/_config_prod.yml
networks:
- proxy
volumes:
- type: bind
source: ./
target: /srv/jekyll
deploy:
mode: replicated
replicas: 1