mirror of
https://git.coop/cotech/website.git
synced 2024-10-31 22:08:44 +00:00
d5a260c00e
This is the latest patch version of v2.6.
31 lines
519 B
YAML
31 lines
519 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
|
|
web:
|
|
build: docker/web
|
|
volumes:
|
|
- site:/usr/local/apache2/htdocs/
|
|
- ./docker/web/httpd.conf:/usr/local/apache2/conf/httpd.conf
|
|
ports:
|
|
- "4000:80"
|
|
|
|
jekyll:
|
|
image: ruby:2.6.6
|
|
working_dir: /src
|
|
environment:
|
|
BUNDLE_PATH: /vendor
|
|
command: >
|
|
sh -c '
|
|
bundle &&
|
|
bundle exec jekyll build --destination /site --watch
|
|
'
|
|
volumes:
|
|
- .:/src
|
|
- site:/site
|
|
- vendor:/vendor
|
|
|
|
volumes:
|
|
vendor:
|
|
site:
|