From ce856beaf2fd8ae25be3d55823ff99ac3436a290 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Sat, 29 Jun 2024 23:13:41 -0300 Subject: [PATCH] Add makefile for proxy targets --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..89999c6 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +proxy-image: + docker build . -t faaso-proxy --no-cache +start-proxy: + docker run --network=faaso-net -v /var/run/docker.sock:/var/run/docker.sock -p 8888:8888 -p 3000:3000 faas +o-proxy \ No newline at end of file