From 7e9f37f671f5109556d2ed8bcbf4bbe1ad7d5ffe Mon Sep 17 00:00:00 2001 From: James Brundage <+@noreply.github.com> Date: Sat, 28 Sep 2024 12:47:31 -0700 Subject: [PATCH] feat: Container.stop.ps1 ( Fixes #282 ) --- Container.stop.ps1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Container.stop.ps1 diff --git a/Container.stop.ps1 b/Container.stop.ps1 new file mode 100644 index 00000000..9a2c0343 --- /dev/null +++ b/Container.stop.ps1 @@ -0,0 +1,10 @@ +<# +.SYNOPSIS + Stops the container. +.DESCRIPTION + This script is called when the container is about to stop. + + It can be used to perform any necessary cleanup before the container is stopped. +#> +param() +"Container now exiting, thank you for using ugit!" | Out-Host