Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.18.3

ENV MKDOCS_VERSION=1.5.2 \
ENV MKDOCS_VERSION=1.5.3 \
DOCS_DIRECTORY='/mkdocs' \
LIVE_RELOAD_SUPPORT='false' \
ADD_MODULES='false' \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-arm64v8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM arm64v8/alpine

ENV MKDOCS_VERSION=1.5.2 \
ENV MKDOCS_VERSION=1.5.3 \
DOCS_DIRECTORY='/mkdocs' \
LIVE_RELOAD_SUPPORT='false' \
ADD_MODULES='false' \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Purpose of this image was to simplify the process of deploying MkDocs. This imag
Example build:

```bash
docker buildx build --platform linux/arm64 --file Dockerfile-arm64v8 -t polinux/mkdocs:arm64v8-1.2.2 .
docker buildx build --platform linux/arm64 --file Dockerfile-arm64v8 -t polinux/mkdocs:arm64v8-1.5.3 .
```

### Docker compose example
Expand All @@ -36,7 +36,7 @@ version: '3'
services:
mkdocs:
container_name: mkdocs
image: polinux/mkdocs:1.2.2
image: polinux/mkdocs:1.5.3
restart: always
ports:
- "8000:8000"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
mkdocs:
container_name: mkdocs
image: polinux/mkdocs:1.5.2
image: polinux/mkdocs:1.5.3
restart: always
ports:
- "8000:8000"
Expand Down