Skip to content

Commit c46ca2c

Browse files
authored
Merge pull request #2 from pozgo/develop
Updated to 1.0.4 and added live reload support
2 parents cd4d623 + eb25350 commit c46ca2c

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
FROM alpine:latest
22

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'
56

67
RUN \
78
apk add --update \

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Workdir is set to `/workdir`
2424
|Variable|Notes|
2525
|:--|:--|
2626
|`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|
2728

2829
### Usage
2930

@@ -51,6 +52,7 @@ docker run \
5152
-ti \
5253
--name mkdocs \
5354
-e GIT_REPO='[email protected]:username/my-repo.git' \
55+
-e LIVE_RELOAD_SUPPORT='true' \
5456
-v ~/.ssh:/root/.ssh:ro \
5557
polinux/mkdocs
5658
```

container-files/bootstrap.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@ check_install_status () {
1212
fi
1313
}
1414
start_mkdocs () {
15+
if [[ ${LIVE_RELOAD_SUPPORT} == 'true' ]]; then
16+
LRS='--no-livereload'
17+
else
18+
LRS=''
19+
fi
1520
cd /workdir/mkdocs
1621
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
1823
}
1924

2025
get_docs () {

0 commit comments

Comments
 (0)