5
0
mirror of https://git.coop/cotech/website.git synced 2024-11-09 09:40:49 +00:00
cotech-website/docker-compose.yml
caprenter 4f27c1274b Necessary to get the application up and running locally
Was encountering a problem with the bundler version
Used the solution here:
https://stackoverflow.com/questions/47026174/find-spec-for-exe-cant-find-gem-bundler-0-a-gemgemnotfoundexception

Signed-off-by: Chris Croome <chris@webarchitects.co.uk>
2023-06-06 15:02:34 +00:00

32 lines
550 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 '
gem update --system &&
bundle &&
bundle exec jekyll build --destination /site --watch
'
volumes:
- .:/src
- site:/site
- vendor:/vendor
volumes:
vendor:
site: