Check out Techno Tim’s Site
Meet Jekyll - The Static Site Generator
What I did first was spin up a cloud image (follow this superb guide [yes, also Tim’s…haha])
Also installed:
- docker
- docker-compose
Then followed the steps here for the rest of it.
Created a docker-compose.yml
1
2
3
4
5
6
7
8
9
version: '3'
services:
jekyll:
image: jekyll/jekyll:latest
command: jekyll serve --watch --force_polling --verbose
ports:
- 4000:4000
volumes:
- .:/srv/jekyll
And also a recreate.sh just…because
1
docker-compose up -d --force-recreate
Probably forgot to mention some stuff….will update when I remember what. (don’t judge….I’m new to this…haha)