Destroying The Environment

If you want to remove all the containers, images and volumes created by the project, you can run the following command:

Danger

This command will remove all the containers, images and volumes created by the project. This includes any data stored within your CVEScan Web environment. Make sure to back up any important data before running this command.

docker compose down -v --rmi all
  • The -v flag will remove the volumes.
  • The --rmi all flag will remove all the images created by the project.