From fe12f074f60f15b093a6a28bbd21292ff816cdde Mon Sep 17 00:00:00 2001 From: Davide Cavalca Date: Feb 02 2022 22:19:39 +0000 Subject: Pull the container from Docker Hub --- diff --git a/Makefile b/Makefile index 9eb7cf4..8b52cac 100644 --- a/Makefile +++ b/Makefile @@ -2,12 +2,12 @@ help: @echo "Run 'make test' to test locally or 'make build' to render the static site" build: - podman run --rm -it -v ${PWD}:/docs:z squidfunk/mkdocs-material build + podman run --rm -it -v ${PWD}:/docs:z docker.io/squidfunk/mkdocs-material build clean: rm -rf site test: - podman run --rm -it -p 8000:8000 -v ${PWD}:/docs:z squidfunk/mkdocs-material + podman run --rm -it -p 8000:8000 -v ${PWD}:/docs:z docker.io/squidfunk/mkdocs-material .PHONY: help build test