Remove unnecessary option

This commit is contained in:
Martin Polden 2019-04-27 10:23:22 +02:00
parent 3a91baab21
commit 27fa828efb
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ docker-login:
docker-test:
$(eval CONTAINER=$(shell docker run --rm --detach --publish-all $(DOCKER_IMAGE)))
$(eval DOCKER_PORT=$(shell docker port $(CONTAINER) | cut -d ":" -f 2))
curl -qfsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER)
curl -fsS -m 5 localhost:$(DOCKER_PORT) > /dev/null; docker stop $(CONTAINER)
docker-push: docker-test docker-login
docker push $(DOCKER_IMAGE)