From e3af861ce636cab6778a426504f55f4bb05e43b1 Mon Sep 17 00:00:00 2001 From: francesco Date: Thu, 22 Apr 2021 19:47:12 +0200 Subject: [PATCH] add mkdocs.yml add workdir in Dockerfile --- .drone/Dockerfile | 5 ++++- mkdocs.yml | 7 +++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 mkdocs.yml diff --git a/.drone/Dockerfile b/.drone/Dockerfile index 0def68f..d2927ba 100644 --- a/.drone/Dockerfile +++ b/.drone/Dockerfile @@ -1,2 +1,5 @@ FROM squidfunk/mkdocs-material -RUN pip install mkdocs-git-revision-date-plugin \ No newline at end of file +RUN pip install mkdocs-git-revision-date-plugin + +# Set working directory +WORKDIR ../docs \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..194200c --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,7 @@ +site_name: F-Docs +theme: + name: 'material' +repo_url: https://git.r4o.ch/francesco/docs +docs_dir: 'docs' +plugins: + - git-revision-date \ No newline at end of file