robosats/docs/docker-compose.yml

13 lines
321 B
YAML
Raw Normal View History

version: '3.9'
services:
jekyll:
image: jekyll/jekyll:4.0
container_name: pages
restart: always
volumes:
- .:/usr/src/docs
command: bash -c "cd /usr/src/docs/
2022-10-25 21:04:12 +03:00
&& bundle install
&& bundle exec jekyll serve --force_polling -H 0.0.0.0 -P 4000"
ports:
- 4000:4000