From f015afe7f099e41d2ce6ad8d41e141767e0740ae Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Tue, 9 Jul 2024 10:57:36 -0300 Subject: [PATCH] Ensure network exists for start-proxy --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c004fa1..f5d140c 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ proxy: all: build proxy start-proxy: + docker network create faaso-net || true docker run --name faaso-proxy-one \ --rm --network=faaso-net \ -e FAASO_SECRET_PATH=${PWD}/secrets \