Home > Net >  how do i connect my docker with RDS instance of postgres
how do i connect my docker with RDS instance of postgres

Time:12-21

how do i connect my docker with instance of postgres RDS

I am trying to connect my AWS RDS instance of postgres with docker but i have no idea how to do that

CodePudding user response:

This is not very different from the actual connection we do usually.

You can just directly connect to the instance from the container using username, password, host, port.

CodePudding user response:

You can check this documentation for connecting to your rds instance.

https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ConnectToPostgreSQLInstance.html

  • Related