jekyll-theme-isabelline/docker-compose.yaml

65 lines
1.5 KiB
YAML
Raw Normal View History

2019-07-22 02:16:23 +00:00
version: '3'
services:
2019-07-22 04:12:19 +00:00
# serve
2019-07-22 02:16:23 +00:00
jekyll-serve:
container_name: jekyll-serve
image: jekyll/jekyll
command: bash -c "bundle update && bundle exec jekyll serve --host 0.0.0.0 --future --draft --force_polling --livereload --incremental"
environment:
2019-07-22 02:16:23 +00:00
JEKYLL_ENV: local
ports:
- 4000:4000
- 35729:35729
volumes:
- .:/srv/jekyll
- .bundle:/usr/local/bundle
2019-07-22 02:16:23 +00:00
2019-07-22 04:12:19 +00:00
# build and push to rubygems.org
2019-07-22 02:16:23 +00:00
gem-push:
container_name: jekyll-gem-push
image: jekyll/jekyll
2019-07-22 03:33:03 +00:00
command: >
2019-07-22 04:12:19 +00:00
bash -c "gem build -v jekyll-theme-isabelline.gemspec \
2019-07-22 04:31:38 +00:00
&& GEM_VER=`ruby -e '\
require \"rubygems\"; \
spec = Gem::Specification::load(\"jekyll-theme-isabelline.gemspec\"); \
puts \"#{spec.version}\"'` \
&& gem push jekyll-theme-isabelline-$${GEM_VER}.gem
2019-07-22 03:33:03 +00:00
"
2019-07-22 02:16:23 +00:00
volumes:
- .:/srv/jekyll
- .bundle:/usr/local/bundle
- ./.gem:/root/.gem
2019-07-22 02:16:23 +00:00
2019-07-22 04:12:19 +00:00
# helpers
jekyll:
container_name: jekyll
image: jekyll/jekyll
entrypoint: jekyll
environment:
JEKYLL_ENV: local
volumes:
- .bundle:/usr/local/bundle
2019-07-22 04:12:19 +00:00
- .:/srv/jekyll
2019-07-22 02:16:23 +00:00
gem:
container_name: jekyll-gem
image: jekyll/jekyll
entrypoint: gem
volumes:
- .bundle:/usr/local/bundle
2019-07-22 02:16:23 +00:00
- .:/srv/jekyll
bundle:
container_name: jekyll
image: jekyll/jekyll
entrypoint: bundle
volumes:
- .bundle:/usr/local/bundle
2019-07-22 02:16:23 +00:00
- .:/srv/jekyll
2019-07-22 04:12:19 +00:00
- ./.gem:/root/.gem