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: services:
jekyll: jekyll:
command: | command: >
jekyll serve --watch --verbose --config /srv/jekyll/_config_prod.yml --trace jekyll serve \
--verbose \
--config _config_prod.yml \
--trace
configs: configs:
- source: config-yml-prod-v1 - source: config-yml-prod-v1
target: /srv/jekyll/_config_prod.yml target: /srv/jekyll/_config_prod.yml
networks: networks:
- proxy - proxy
volumes:
- type: bind
source: ./
target: /srv/jekyll
deploy: deploy:
mode: replicated mode: replicated
replicas: 1 replicas: 1