Skip to content
Snippets Groups Projects
Commit aca424c9 authored by Jan Frenzel's avatar Jan Frenzel
Browse files

Removed volume from Dockerfile; added parameter -p 8000:0000 for serving

via docker.
parent 8a242946
No related branches found
No related tags found
3 merge requests!322Merge preview into main,!319Merge preview into main,!211Added information about how to use the Dockerfile to serve the documentation.
...@@ -18,6 +18,4 @@ RUN npm install -g markdownlint-cli markdown-link-check ...@@ -18,6 +18,4 @@ RUN npm install -g markdownlint-cli markdown-link-check
WORKDIR /src/doc.zih.tu-dresden.de WORKDIR /src/doc.zih.tu-dresden.de
VOLUME ["/docs"]
CMD ["mkdocs", "build", "--verbose"] CMD ["mkdocs", "build", "--verbose"]
...@@ -121,16 +121,23 @@ docker build -t hpc-compendium . ...@@ -121,16 +121,23 @@ docker build -t hpc-compendium .
``` ```
If you want to see how it looks in your browser, you can use shell commands to serve If you want to see how it looks in your browser, you can use shell commands to serve
the documentation (first line) and get the URL for your browser's address bar (second line): the documentation:
```Bash ```Bash
docker run --name=hpc-compendium --rm -it -w /docs --mount src="$(pwd)"/doc.zih.tu-dresden.de,target=/docs,type=bind hpc-compendium bash -c "mkdocs build --verbose && mkdocs serve -a 0.0.0.0:8000" docker run --name=hpc-compendium -p 8000:8000 --rm -it -w /docs --mount src="$(pwd)"/doc.zih.tu-dresden.de,target=/docs,type=bind hpc-compendium bash -c "mkdocs build --verbose && mkdocs serve -a 0.0.0.0:8000"
```
You can view the documentation via [http://localhost:8000](http://localhost:8000) in your browser, now.
If that does not work, check if you can get the URL for your browser's address
bar from a different terminal window:
```Bash
echo http://$(docker inspect -f "{{.NetworkSettings.IPAddress}}" $(docker ps -qf "name=hpc-compendium")):8000 echo http://$(docker inspect -f "{{.NetworkSettings.IPAddress}}" $(docker ps -qf "name=hpc-compendium")):8000
``` ```
The first line (with the mount option) automatically takes care of the file changes and rebuilds The running container automatically takes care of file changes and rebuilds the
the documentation. If you want to check whether the markdown files are formatted properly, use the documentation. If you want to check whether the markdown files are formatted
following command: properly, use the following command:
```Bash ```Bash
docker run --name=hpc-compendium --rm -it -w /docs --mount src="$(pwd)"/doc.zih.tu-dresden.de,target=/docs,type=bind hpc-compendium markdownlint docs docker run --name=hpc-compendium --rm -it -w /docs --mount src="$(pwd)"/doc.zih.tu-dresden.de,target=/docs,type=bind hpc-compendium markdownlint docs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment