From 8540e6dc2fa793f42ffe4b20a5251a34915a48ca Mon Sep 17 00:00:00 2001 From: Darnell Andries Date: Tue, 18 Jul 2023 17:25:37 -0700 Subject: [PATCH] Update Dockerfile and start.sh --- Dockerfile | 2 +- start.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 891fbfd..a183e59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Start by building the nitriding proxy daemon. FROM public.ecr.aws/docker/library/golang:1.20.6-alpine as go-builder -RUN CGO_ENABLED=0 go install -trimpath -ldflags="-s -w" -buildvcs=false github.com/brave/nitriding-daemon@v1.2.1 +RUN CGO_ENABLED=0 go install -trimpath -ldflags="-s -w" -buildvcs=false github.com/brave/nitriding-daemon@v1.4.0 # Build the web server application itself. # Use the -alpine variant so it will run in a alpine-based container. diff --git a/start.sh b/start.sh index 6428379..f4debac 100755 --- a/start.sh +++ b/start.sh @@ -8,6 +8,7 @@ nitriding \ -prometheus-port 9090 \ -vsock-ext \ -disable-keep-alives \ + -prometheus-namespace "starrandsrv" \ -extport 443 \ -intport 8081 & echo "[sh] Started nitriding as reverse proxy."