From 6c08128d2f8524d764ed7ae5d178fa7be3d579c1 Mon Sep 17 00:00:00 2001 From: Venkat Pavan Poolla <53978367+pavan203@users.noreply.github.com> Date: Wed, 3 Dec 2025 18:31:01 -0500 Subject: [PATCH] Add deployment hooks to appspec.yml --- appspec.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000000..28d8431ba7 --- /dev/null +++ b/appspec.yml @@ -0,0 +1,12 @@ +version: 0.0 +os: linux + +hooks: + ApplicationStop: + - location: scripts/stop_container.sh + timeout: 300 + runas: root + AfterInstall: + - location: scripts/start_container.sh + timeout: 300 + runas: root