Skip to content

Commit 299bc3c

Browse files
committed
Use docker compose for deployment
1 parent 490c4bd commit 299bc3c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

deploy.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
2-
image_hash=$1
3-
account_id=$(aws sts get-caller-identity --query Account --output text)
2+
export image_hash=$1
3+
export account_id=$(aws sts get-caller-identity --query Account --output text)
44
aws ecr get-login-password | docker login --username AWS --password-stdin ${account_id}.dkr.ecr.us-west-1.amazonaws.com \
5-
&& docker stop go-capture \
6-
&& docker rm go-capture \
7-
&& docker run -d --env-file .env -p 8000:8000 --name go-capture ${account_id}.dkr.ecr.us-west-1.amazonaws.com/go-capture:${image_hash} \
5+
&& docker compose stop \
6+
&& docker compose build \
7+
&& docker compose run api

0 commit comments

Comments
 (0)