Update install and make

This commit is contained in:
Logan Cusano
2025-06-22 22:35:05 -04:00
parent d1b668fa60
commit e961baca01
2 changed files with 3 additions and 3 deletions

View File

@@ -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)

View File

@@ -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