Vinit Khandelwal
Vinit Khandelwal

Reputation: 637

How to use Redis with AWS ECS?

I want to use Redis with my nodejs app running in docker on AWS ECS. I'd either want a solution to run Redis in ECS or solution on how to connect ECS with AWS Elasticache

Upvotes: 2

Views: 5185

Answers (1)

includeno分享空间
includeno分享空间

Reputation: 51

Run Redis in ECS:

Container definitions:

  1. Image:redis:6.0.13
  2. Port mapping:6379
  3. Environment-Command:redis-server,--requirepass redis123456

Login to the Redis Server with password redis123456. It works normally.

Image&Port mapping

Environment-Command

Upvotes: 5

Related Questions