Skip to content

Commit 4d797da

Browse files
committed
fix: correct docker-compose env var syntax (use :- not :)
1 parent ec46387 commit 4d797da

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ services:
6060
REDIS_HOST: redis
6161
REDIS_PORT: 6379
6262
# S3 credentials come from the EC2 IAM role automatically — no keys needed here.
63-
AWS_REGION: ${AWS_REGION:ap-south-1}
64-
AWS_S3_BUCKET: ${AWS_S3_BUCKET}
63+
AWS_REGION: ${AWS_REGION:-ap-south-1}
64+
AWS_S3_BUCKET: ${AWS_S3_BUCKET:-amzn-saas3}
6565
depends_on:
6666
postgres:
6767
condition: service_healthy

0 commit comments

Comments
 (0)