File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:latest
2
2
3
- ENV MKDOCS_VERSION="1.0.3" \
4
- GIT_REPO='false'
3
+ ENV MKDOCS_VERSION="1.0.4" \
4
+ GIT_REPO='false' \
5
+ LIVE_RELOAD_SUPPORT='false'
5
6
6
7
RUN \
7
8
apk add --update \
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ Workdir is set to `/workdir`
24
24
| Variable| Notes|
25
25
| :--| :--|
26
26
| ` GIT_REPO ` | Remote git based repository - requires mounted keys * see examples below* |
27
+ | ` LIVE_RELOAD_SUPPORT ` | Support for live reload feature. Default set to ` false ` - Use if auto reload needed|
27
28
28
29
### Usage
29
30
@@ -51,6 +52,7 @@ docker run \
51
52
-ti \
52
53
--name mkdocs \
53
54
-e GIT_REPO=
' [email protected] :username/my-repo.git' \
55
+ -e LIVE_RELOAD_SUPPORT=' true' \
54
56
-v ~ /.ssh:/root/.ssh:ro \
55
57
polinux/mkdocs
56
58
```
Original file line number Diff line number Diff line change @@ -12,9 +12,14 @@ check_install_status () {
12
12
fi
13
13
}
14
14
start_mkdocs () {
15
+ if [[ ${LIVE_RELOAD_SUPPORT} == ' true' ]]; then
16
+ LRS=' --no-livereload'
17
+ else
18
+ LRS=' '
19
+ fi
15
20
cd /workdir/mkdocs
16
21
echo " Starting MKDocs"
17
- mkdocs serve -a $( ip addr show eth0 | grep " inet\b" | awk ' {print $2}' | cut -d/ -f1) :8000
22
+ mkdocs serve -a $( ip addr show eth0 | grep " inet\b" | awk ' {print $2}' | cut -d/ -f1) :8000 $LRS
18
23
}
19
24
20
25
get_docs () {
You can’t perform that action at this time.
0 commit comments