try dind
Some checks failed
/ build (push) Failing after 18s

This commit is contained in:
Chris Cowley 2024-10-03 17:25:17 +02:00
parent 82b0f990a2
commit 6eef29511e
2 changed files with 9 additions and 8 deletions

View file

@ -1,3 +1,4 @@
GITREF := $(shell git rev-parse --short HEAD)
init:
podman run --rm -ti -v ${PWD}:/docs docker.io/squidfunk/mkdocs-material new .
@ -5,4 +6,8 @@ preview:
docker run --rm -ti -v ${PWD}:/docs:Z -p 8000:8000 docker.io/squidfunk/mkdocs-material
build:
podman run --rm -ti -v ${PWD}:/docs docker.io/squidfunk/mkdocs-material build
docker run --rm -ti -v ${PWD}:/docs docker.io/squidfunk/mkdocs-material build
docker:
@docker build -t "code.lab.cowley.tech/homelab/homelab-docs:$(GITREF)" .
@docker push "code.lab.cowley.tech/homelab/homelab-docs:$(GITREF)"