17 lines
359 B
YAML

---
version: "3.8"
services:
jekyll:
image: "jekyll/jekyll:latest"
container_name: "jekyll"
hostname: "jekyll"
command: "jekyll serve --force_polling"
network_mode: "bridge"
environment:
- "TZ=Europe/Amsterdam"
volumes:
- "/home/sthope/jekyll:/srv/jekyll"
ports:
- "4000:4000"
restart: "unless-stopped"