Skip to content

Commit

Permalink
Don't use metadrop/mkdocs image anymore, use oficial image instead
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjol committed Oct 1, 2024
1 parent 0f8c752 commit 70b9f00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docker-compose.mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
services:
mkdocs:
container_name: "ddev-${DDEV_SITENAME}-mkdocs"
image: metadrop/docker-mkdocs:2.0.1
image: squidfunk/mkdocs-material:latest
environment:
- VIRTUAL_HOST=$DDEV_HOSTNAME
- HTTP_EXPOSE=9004:8080
- HTTPS_EXPOSE=9005:8080
- HTTP_EXPOSE=9004:8000
- HTTPS_EXPOSE=9005:8000
volumes:
- $DDEV_APPROOT/docs:/docs
- .:/mnt/ddev_config:ro
Expand All @@ -20,7 +20,7 @@ services:
ddev_default: null
default: null
expose:
- "8080"
- "8000"
web:
links:
- mkdocs:mkdocs
2 changes: 1 addition & 1 deletion tests/test.bats
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ setup() {

health_checks() {
echo "Checking mkdocs health" >&3
ddev exec wget http://mkdocs:8080 -q -O - | grep Welcome | grep -m1 "Welcome to Mkdocs"
ddev exec wget http://mkdocs:8000 -q -O - | grep Welcome | grep -m1 "Welcome to Mkdocs"
}

check_build_mkdocs() {
Expand Down

0 comments on commit 70b9f00

Please sign in to comment.