From 953d8bedf60132b4b29613eac7746dcc56a6e9f8 Mon Sep 17 00:00:00 2001 From: syui Date: Tue, 21 May 2024 13:49:26 +0900 Subject: [PATCH] fix --- .gitignore | 3 +++ app/404.css => 404.css | 0 compose.yml | 11 +++++++---- app/index.html => index.html | 0 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 .gitignore rename app/404.css => 404.css (100%) rename app/index.html => index.html (100%) 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