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
asked Sep 8, 2020 at 4:37
-
docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/… Also that your app has to implement mechanism to read/write to ElasticacheAndrzej Sydor– Andrzej Sydor2020年09月08日 07:44:23 +00:00Commented Sep 8, 2020 at 7:44
1 Answer 1
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.
Image&Port mapping
Environment-Command
Animeta
1,3633 gold badges19 silver badges32 bronze badges
answered Feb 15, 2022 at 13:04
Sign up to request clarification or add additional context in comments.
Comments
Explore related questions
See similar questions with these tags.