website/_posts/2021-07-25-jekyll-website.md
sthope 0506f02b43
All checks were successful
continuous-integration/drone/push Build is passing
initial commit
2021-09-04 02:52:02 +02:00

1.2 KiB

layout title description author image categories comments
post Jekyll Docker Website sthope
Docker
Jekyll
true

Portainer Stack

---
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:
      - "/edit/this:/srv/jekyll"
    ports:
      - "4000:4000"
    restart: "unless-stopped"

volumes:
    jekyll:
        external: false

Create folder with eg: mkdir -p ~/jekyll and change the Volume

Portainer Stack with Volumes

---
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:
      - "jekyll:/srv/jekyll"
    ports:
      - "4000:4000"
    restart: "unless-stopped"

volumes:
    jekyll:
        external: false

** Good for testing, not recommended for production. **

sudo docker exec -it jekyll /bin/sh -c 'jekyll new /srv/jekyll/ --blank --force'

Send this from the terminal to initiate a blank website.