From b8eea6052af60f82e566f35cee2867b1def88383 Mon Sep 17 00:00:00 2001 From: s4616 <87678241+s4616@users.noreply.github.com> Date: Mon, 10 Jul 2023 20:34:14 +0900 Subject: [PATCH] Delete run_process.sh --- scripts/run_process.sh | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 scripts/run_process.sh diff --git a/scripts/run_process.sh b/scripts/run_process.sh deleted file mode 100644 index 19c1874c3..000000000 --- a/scripts/run_process.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -REGION="ap-northeast-2" -ACCOUNT_ID="257307634175" -ECR_REPOSITORY="${ACCOUNT_ID}.dkr.ecr.ap-northeast-2.amazonaws.com" -ECR_DOCKER_IMAGE="${ECR_REPOSITORY}/spring-petclinic" -ECR_DOCKER_TAG="1.0" - -aws ecr get-login-password --region ${REGION} \ - | docker login --username AWS --password-stdin ${ECR_REPOSITORY}; - -export IMAGE=${ECR_DOCKER_IMAGE}; -export TAG=${ECR_DOCKER_TAG}; -docker-compose -f /home/ubuntu/docker-compose.yml up -d; -