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
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
Run Redis in ECS: Container definitions: Image:redis:6.0.13 Port mapping:6379 Environment-Command:redis-server,--requirepass redis123456 Login to the Redis Server with password redis123456.It works normally.