diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ab4d2ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +app +_site +.jekyll-cache diff --git a/app/404.css b/404.css similarity index 100% rename from app/404.css rename to 404.css diff --git a/compose.yml b/compose.yml index 06c29d1..a18d7e6 100644 --- a/compose.yml +++ b/compose.yml @@ -1,7 +1,10 @@ services: - site: - image: starefossen/github-pages:latest - volumes: - - ./app:/usr/src/app + jekyll_site: + image: jekyll/jekyll:4.2.0 + command: ["jekyll", "serve"] ports: - 4000:4000 + volumes: + - type: bind + source: . + target: /srv/jekyll diff --git a/app/index.html b/index.html similarity index 100% rename from app/index.html rename to index.html