From fc7b392ec7772c68becc44a4a10d1717d37f0000 Mon Sep 17 00:00:00 2001 From: sohyundoh Date: Sat, 24 Jun 2023 15:35:25 +0900 Subject: [PATCH] Create appspec.yml --- appspec.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000..44c46f6 --- /dev/null +++ b/appspec.yml @@ -0,0 +1,19 @@ +version: 0.0 +os: linux + +files: + - source: / + destination: /home/ubuntu/app + overwrite: yes + +permissions: + - object: / + pattern: "**" + owner: ubuntu + group: ubuntu + +hooks: + AfterInstall: + - location: deploy.sh + timeout: 60 + runas: ubuntu