Delete run_process.sh

This commit is contained in:
s4616 2023-07-10 20:34:14 +09:00 committed by GitHub
parent c54f910cba
commit b8eea6052a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;