www-jmbit-de/Makefile

18 lines
327 B
Makefile
Raw Normal View History

dev:
hugo server -D
static:
hugo
container:
2022-12-31 17:15:40 +01:00
podman build -t docker.io/jmbitci/www-jmbit-de .
publish:
2022-12-31 17:15:40 +01:00
podman push docker.io/jmbitci/www-jmbit-de
nopub: static container
2022-12-31 17:15:40 +01:00
podman run --rm docker.io/jmbitci/www-jmbit-de
rollout:
kubectl rollout restart deployment www-jmbit-de -n jmbit-web
all: static container publish