Improve Makefile

This commit is contained in:
Tomasz Sęk 2019-08-19 16:53:14 +02:00
parent 7d2177f8c4
commit 64f6fa68eb
No known key found for this signature in database
GPG Key ID: DC356D23F6A644D0
1 changed files with 2 additions and 2 deletions

View File

@ -426,8 +426,8 @@ image: ## Create the docker image from the Dockerfile. This image is used to bui
.PHONY: indocker
PWD := $(shell pwd)
DOCKER_HOST_IP := $(shell minikube docker-env | grep DOCKER_HOST | cut -d '"' -f 2)
MINIKUBE_IP := $(shell minikube ip)
DOCKER_HOST_IP := $(shell minikube docker-env | grep DOCKER_HOST | cut -d '"' -f 2 2> /dev/null)
MINIKUBE_IP := $(shell minikube ip 2> /dev/null)
indocker: minikube-start image ## Run make in a docker container
@echo "+ $@"
docker run --rm -it $(DOCKER_FLAGS) \