diff --git a/app/vminsert/Makefile b/app/vminsert/Makefile index 1a798b56f1..5f836d9144 100644 --- a/app/vminsert/Makefile +++ b/app/vminsert/Makefile @@ -1,7 +1,6 @@ # All these commands must run from repository root. run-vminsert: - DOCKER_OPTS='-p 8480:8480' \ APP_NAME=vminsert \ ARGS='-storageNode=localhost:8400' \ $(MAKE) run-via-docker diff --git a/app/vmselect/Makefile b/app/vmselect/Makefile index c175ba74cc..8822a69f7c 100644 --- a/app/vmselect/Makefile +++ b/app/vmselect/Makefile @@ -2,7 +2,7 @@ run-vmselect: mkdir -p vmselect-cache - DOCKER_OPTS='-v $(shell pwd)/vmselect-cache:/cache -p 8481:8481' \ + DOCKER_OPTS='-v $(shell pwd)/vmselect-cache:/cache' \ APP_NAME=vmselect \ ARGS='-storageNode=localhost:8401 -selectNode=localhost:8481 -cacheDataPath=/cache' \ $(MAKE) run-via-docker diff --git a/app/vmstorage/Makefile b/app/vmstorage/Makefile index 046f98e5a5..670e2420f2 100644 --- a/app/vmstorage/Makefile +++ b/app/vmstorage/Makefile @@ -2,7 +2,7 @@ run-vmstorage: mkdir -p vmstorage-data - DOCKER_OPTS='-v $(shell pwd)/vmstorage-data:/vmstorage-data -p 8482:8482 -p 8400:8400 -p 8401:8401' \ + DOCKER_OPTS='-v $(shell pwd)/vmstorage-data:/vmstorage-data' \ APP_NAME=vmstorage \ ARGS='-retentionPeriod=12' \ $(MAKE) run-via-docker