diff --git a/cdk.context.json b/cdk.context.json new file mode 100644 index 0000000..e26be24 --- /dev/null +++ b/cdk.context.json @@ -0,0 +1,5 @@ +{ + "acknowledged-issue-numbers": [ + 34892 + ] +} diff --git a/infra/cdk.context.json b/infra/cdk.context.json index 4f37df3..382d08e 100644 --- a/infra/cdk.context.json +++ b/infra/cdk.context.json @@ -11,5 +11,8 @@ "hosted-zone:account=652460108554:domainName=for-test.click:region=us-east-1": { "Id": "/hostedzone/Z02922463EWWL2UZ4E04J", "Name": "for-test.click." - } + }, + "acknowledged-issue-numbers": [ + 34892 + ] } diff --git a/infra/lib/infra-stack.ts b/infra/lib/infra-stack.ts index a07284b..a740956 100644 --- a/infra/lib/infra-stack.ts +++ b/infra/lib/infra-stack.ts @@ -282,7 +282,7 @@ export class InfraStack extends cdk.Stack { `echo "BCRYPT_SALT_ROUNDS=8" >> .env`, // Start Docker Compose - 'sudo -u ec2-user /usr/local/bin/docker-compose up -d', + 'sudo -u ec2-user /usr/local/bin/docker-compose up api postgres redis -d', // Wait for services to start, then run migrations 'sleep 30', diff --git a/infra/package-lock.json b/infra/package-lock.json index ef8b610..7d9e8aa 100644 --- a/infra/package-lock.json +++ b/infra/package-lock.json @@ -1,12 +1,12 @@ { "name": "infra", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "infra", - "version": "0.1.0", + "version": "0.1.1", "dependencies": { "aws-cdk-lib": "2.208.0", "constructs": "^10.0.0" diff --git a/infra/package.json b/infra/package.json index a200a1b..a8aa244 100644 --- a/infra/package.json +++ b/infra/package.json @@ -1,6 +1,6 @@ { "name": "infra", - "version": "0.1.0", + "version": "0.1.1", "bin": { "infra": "bin/infra.js" },