Member since
05-08-2017
2
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4651 | 10-01-2017 08:33 PM |
10-01-2017
08:33 PM
1 Kudo
@Tamil Selvan K If you want to access the db and fetch the details This can be done by executing the following commands (Postgres db is the default) : docker exec -it cbreak_commondb_1 su postgres -c 'psql' postgres=# \l postgres=# \c cbdb You are now connected to database "cbdb" as user "postgres” cbdb=# select id, name, stack_id, status from cluster; // Queries the cluster id, name, and the status of the clusters
... View more