From 055d3e151d5437c6937e9c96941033028dccb8ce Mon Sep 17 00:00:00 2001 From: minseokkang Date: Thu, 10 Nov 2022 10:12:34 +0900 Subject: [PATCH] feat : appspec.yml add --- appspec.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appspec.yml diff --git a/appspec.yml b/appspec.yml new file mode 100644 index 0000000..290d9a1 --- /dev/null +++ b/appspec.yml @@ -0,0 +1,18 @@ +version: 0.0 +os: linux +files: + - source: / + destination: /home/ubuntu/app + overwrite: yes + +permissions: + - object: / + pattern: "**" + owner: ubuntu + group: ubuntu + +hooks: + ApplicationStart: + - location: deploy.sh + timeout: 60 + runas: ubuntu \ No newline at end of file