14 lines
343 B
YAML
14 lines
343 B
YAML
version: "3"
|
|
|
|
services:
|
|
jekyll_custom:
|
|
build: .
|
|
image: al-folio-local-docker
|
|
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 --trace"
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- .:/srv/jekyll |