From e961baca01b6a1aedd6ff837849fc0b0e2093633 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 22 Jun 2025 22:35:05 -0400 Subject: [PATCH] Update install and make --- Makefile | 2 +- install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a0f0623..a306847 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,6 @@ build: # Target to run the server container using the host network run: build docker run -it --rm \ - -v "$(pwd)/data":/data \ + -v "$(shell pwd)/data":/data \ --network=host \ $(CLIENT_IMAGE) diff --git a/install.sh b/install.sh index b729a53..c841163 100644 --- a/install.sh +++ b/install.sh @@ -48,8 +48,8 @@ create_config_json() { } start_docker_container() { - local container_name="websocket-client-app-container" # A unique name for your container - local image_name="websocket-client-app" # From your Makefile + local container_name="drb-client-app-container" # A unique name for your container + local image_name="drb-client-app" # From your Makefile echo -e "${GREEN}Building Docker image '${image_name}'...${NC}" # Build the Docker image from the current directory