This commit is contained in:
Julian Graf 2023-06-17 23:56:36 +02:00
parent 27a86e6314
commit 8d840b6543
1 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ website/scn_send.html: website/scn_send.sh.txt
_pygments/pygmentizew -S monokai -f html > "$(shell pwd)/website/css/pygmnetize-dark.css"
_pygments/pygmentizew -S borland -f html > "$(shell pwd)/website/css/pygmnetize-light.css"
run-docker-local: docker
run-docker-local: build-docker
mkdir -p .run-data
docker run --rm \
--init \
@ -59,7 +59,7 @@ run-docker-local: docker
--publish "8080:80" \
$(DOCKER_NAME):latest
inspect-docker: docker
inspect-docker: build-docker
mkdir -p .run-data
docker run -ti \
--rm \
@ -67,7 +67,7 @@ inspect-docker: docker
$(DOCKER_NAME):latest \
bash
push-docker: docker
push-docker: build-docker
docker image push "$(DOCKER_REPO)/$(DOCKER_NAME):$(HASH)"
docker image push "$(DOCKER_REPO)/$(DOCKER_NAME):$(NAMESPACE)-latest"
docker image push "$(DOCKER_REPO)/$(DOCKER_NAME):latest"