From 5e8865a87a4705e6a250d382ea6f3d26dc366729 Mon Sep 17 00:00:00 2001 From: Garrett Beasley Date: Fri, 6 May 2022 09:42:34 -0700 Subject: [PATCH] rm: version + server_url - No longer used after discussing with Wes further. --- Dockerfile | 1 - entrypoint | 1 - 2 files changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b94eee1..a627ce4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,6 @@ FROM ubuntu:20.04 LABEL version="Velociraptor v0.6.4" LABEL description="Velociraptor server in a Docker container" LABEL maintainer="Wes Lambert, @therealwlambert" -ENV VERSION="0.6.4 " COPY ./entrypoint . RUN chmod +x entrypoint && \ apt-get update && \ diff --git a/entrypoint b/entrypoint index 5f1473c..b193b47 100755 --- a/entrypoint +++ b/entrypoint @@ -3,7 +3,6 @@ set -e BIND_ADDRESS="0.0.0.0" PUBLIC_PATH="public" LOG_DIR="." -SERVER_URL="https://VelociraptorServer:8000/" DATASTORE_LOCATION="./" FILESTORE_DIRECTORY="./" CLIENT_DIR="/velociraptor/clients"