pages/docker-local.yml
2022-12-11 01:51:12 -05:00

13 lines
302 B
YAML

version: "3"
services:
jekyll_custom:
build: .
container_name: al-folio-local-website
command: bash -c "
rm -f Gemfile.lock
&& bundler exec jekyll serve --watch --port=8080 --host=0.0.0.0 --livereload --verbose"
ports:
- 8080:8080
volumes:
- .:/srv/jekyll