From aec253346d6c51cb52293154f5008dc19048f079 Mon Sep 17 00:00:00 2001 From: Luiz Carvalho Date: Fri, 29 Jan 2021 08:28:01 -0500 Subject: [PATCH] Create iib_data dir Unlike docker, podman will not create the dir for a bind volume if it doesn't already exist: https://github.com/containers/podman-compose/issues/185 Signed-off-by: Luiz Carvalho --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28d10a79..d0f06d59 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ all: @echo ' IIB_COMPOSE_ENGINE environment variable to another compose system, e.g.' @echo ' "podman-compose".' -up: ca-bundle.crt +up: ca-bundle.crt iib-data @echo "Starting the local development instance..." ${IIB_COMPOSE_ENGINE} up -d @@ -51,3 +51,6 @@ test: ca-bundle.crt: @cp -f /etc/pki/tls/certs/ca-bundle.crt . + +iib-data: + @mkdir -p iib_data/registry