diff --git a/scripts/Dockerfile.jekyll b/scripts/Dockerfile.jekyll index f925973ec..4786f7974 100644 --- a/scripts/Dockerfile.jekyll +++ b/scripts/Dockerfile.jekyll @@ -5,7 +5,7 @@ FROM bretfisher/jekyll-serve WORKDIR /site # Copy the current directory contents into the container at /srv/jekyll -COPY . /site +COPY website /site # Install any needed packages specified in Gemfile RUN bundle install --retry 5 --jobs 20 diff --git a/scripts/jekyll_run.sh b/scripts/jekyll_run.sh index f3497168f..d50ade007 100755 --- a/scripts/jekyll_run.sh +++ b/scripts/jekyll_run.sh @@ -3,7 +3,7 @@ # Run the Docker container docker run \ --rm \ - -v "$PWD:/site" \ + -v "$PWD/website:/site" \ -p 4000:4000 \ -e HISTFILE=/site/.bash_history \ --entrypoint /bin/bash \ diff --git a/website/_config.yml b/website/_config.yml index 3d818e87e..b0aaeff11 100644 --- a/website/_config.yml +++ b/website/_config.yml @@ -1,6 +1,5 @@ theme: just-the-docs url: "https://aider.chat" -source: website plugins: - jekyll-redirect-from @@ -32,3 +31,5 @@ nav_external_links: url: "https://github.com/paul-gauthier/aider" - title: "Discord" url: "https://discord.gg/Tv2uQnR88V" + +repository: paul-gauthier/aider