From 926eec3c651d92b89ab547bf70395d4ba9b0031d Mon Sep 17 00:00:00 2001 From: Jason Hunter Date: Tue, 18 May 2021 23:20:30 -0400 Subject: [PATCH] add --push so the images actually get published for nginx since they are not saved locally --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5cd61f139..845024f59 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ amd64_ffmpeg: docker build --tag blakeblackshear/frigate-ffmpeg:1.1.0-amd64 --file docker/Dockerfile.ffmpeg.amd64 . nginx_frigate: - docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag blakeblackshear/frigate-nginx:1.0.0 --file docker/Dockerfile.nginx . + docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag blakeblackshear/frigate-nginx:1.0.0 --file docker/Dockerfile.nginx . amd64_frigate: version web docker build --tag frigate-base --build-arg ARCH=amd64 --build-arg FFMPEG_VERSION=1.1.0 --build-arg WHEELS_VERSION=1.0.3 --build-arg NGINX_VERSION=1.0.0 --file docker/Dockerfile.base .