Replies: 1 comment
-
|
So, I created a The path does exist so am struggling as to why I am seeing the error. Note - when I run the project i.e |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
We currently use mkdocs-material for a single set of product documentation and deploy using the standard
mkdocs gh-deploy --forcecommand. Our current repository layout has themkdocs.ymlat the root and then adocsfolder that contains all of our documentation.We would now like to have multiple product documentation under the one site with each being served at a specific path i.e.
https://my.domain.com/product_a,https://my.domain.com/product_betc and believe we can do this with the Projects plugin but I am struggling a little to get it working.My repository has now been amended so that we have the following:
We create a docker image so we can test the documentation locally. We use a Python 3 base image, pip install
mkdocs-material-insidersand then copy in themkdocs.ymlandprojectsfolder. We run the docker image with the commanddocker run -it --rm docs- the Dockerfile has the commandCMD ["serve", "-f", "mkdocs.yml", "--dev-addr=0.0.0.0:8000"]however I am seeing some errors and want to check if this is the correct way to run mkdocs, for example it is looking for adocsfolder at the root.Is the above possible?
Beta Was this translation helpful? Give feedback.
All reactions