From 01c58a5d4cdbbb04423c89ebee740d1483fd2d78 Mon Sep 17 00:00:00 2001 From: webpwnized Date: Tue, 8 Oct 2024 16:18:19 -0400 Subject: [PATCH] 1.0.71 Updated documentation in compose file --- .build/docker-compose.yml | 15 +++++++-------- version | 2 +- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.build/docker-compose.yml b/.build/docker-compose.yml index 227460f..0f0d07e 100644 --- a/.build/docker-compose.yml +++ b/.build/docker-compose.yml @@ -1,14 +1,13 @@ # Documentation: https://github.com/compose-spec/compose-spec/blob/master/spec.md # Purpose: Build and manage local containers for the Mutillidae environment using Docker Compose. -# To build and start the containers (forcing a rebuild), use the following command from the project root: -# docker compose --file .build/docker-compose.yml up --build --detach -# -# Explanation of flags: -# --file .build/docker-compose.yml: Specifies the location of the docker-compose.yml file. -# up: Tells Docker Compose to create and start the containers defined in the compose file. -# --build: Forces Docker to rebuild the images for the services, ensuring that any updates are incorporated. -# --detach (-d): Runs the containers in detached mode (in the background). +# To forcefully build the images without using cached layers and then start the containers, run the following commands from the project root: +# docker compose --file .build/docker-compose.yml build --no-cache +# docker compose --file .build/docker-compose.yml up --detach +# +# Explanation: +# build --no-cache: Rebuilds the images for the services without using any cached layers, ensuring a fresh build. +# up --detach (-d): Starts the containers in detached mode (running in the background). # To start the containers without rebuilding the images, run: # docker compose --file .build/docker-compose.yml up --detach diff --git a/version b/version index 9d8637c..1edd062 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.0.70 +1.0.71