Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
aca424c9
Commit
aca424c9
authored
3 years ago
by
Jan Frenzel
Browse files
Options
Downloads
Patches
Plain Diff
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
!322
Merge preview into main
,
!319
Merge preview into main
,
!211
Added information about how to use the Dockerfile to serve the documentation.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+0
-2
0 additions, 2 deletions
Dockerfile
doc.zih.tu-dresden.de/README.md
+12
-5
12 additions, 5 deletions
doc.zih.tu-dresden.de/README.md
with
12 additions
and
7 deletions
Dockerfile
+
0
−
2
View file @
aca424c9
...
@@ -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"]
This diff is collapsed.
Click to expand it.
doc.zih.tu-dresden.de/README.md
+
12
−
5
View file @
aca424c9
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment