mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-07 04:42:58 -05:00
[docs] Split docs into multiple files and publish with gh-actions
This commit is contained in:
18
mkdocs.sh
Executable file
18
mkdocs.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Run mkdocs commands
|
||||
#
|
||||
# No local installation of mkdocs and the required plugins is required.
|
||||
# Instead this script uses the offical docker image for "Material for MkDocs"
|
||||
#
|
||||
# https://squidfunk.github.io/mkdocs-material/getting-started/#with-docker
|
||||
#
|
||||
# Without arguments the "serve" command is executed (starts the local development
|
||||
# server).
|
||||
#
|
||||
# Usage examples:
|
||||
#
|
||||
# - Build documentation: ./mkdocs.sh build
|
||||
# - Show command help: ./mkdocs.sh --help
|
||||
|
||||
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material $@
|
||||
Reference in New Issue
Block a user