From 9524778bc1088241313ad45642004e87c617e5b2 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Sun, 14 Jun 2026 19:33:56 -0500 Subject: [PATCH] First commit --- Dockerfile | 14 ++++++++++++++ docs/index.md | 17 +++++++++++++++++ docs/site.md | 3 +++ mkdocs.yml | 1 + 4 files changed, 35 insertions(+) create mode 100644 Dockerfile create mode 100644 docs/index.md create mode 100644 docs/site.md create mode 100644 mkdocs.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d3fc18a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM squidfunk/mkdocs-material:9 AS www-build + +COPY ./ /src + +WORKDIR /src +RUN mkdocs build + +FROM git.tesses.org/tesses50/basic-webserver:latest + +COPY --from=www-build /src/site /www + +EXPOSE 4206 + +ENTRYPOINT ["/usr/local/bin/tfileserver","-p","4206","/www"] \ No newline at end of file diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..000ea34 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,17 @@ +# Welcome to MkDocs + +For full documentation visit [mkdocs.org](https://www.mkdocs.org). + +## Commands + +* `mkdocs new [dir-name]` - Create a new project. +* `mkdocs serve` - Start the live-reloading docs server. +* `mkdocs build` - Build the documentation site. +* `mkdocs -h` - Print help message and exit. + +## Project layout + + mkdocs.yml # The configuration file. + docs/ + index.md # The documentation homepage. + ... # Other markdown pages, images and other files. diff --git a/docs/site.md b/docs/site.md new file mode 100644 index 0000000..8908372 --- /dev/null +++ b/docs/site.md @@ -0,0 +1,3 @@ +# My Second Page + +Cool \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..b7faa98 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1 @@ +site_name: CrossLang