How to use marketplace service in cloud foundry

Опубликовано: 05 Ноябрь 2024
на канале: Code Techies
266
2

Cloud foundry provides many ready to use #marketplace service. This video describes how to use cloud foundry market place service and how to bind application with marketplace service in cloud foundry.
In this video we shall bind a postgreSQL market place service with the application.

Also how to access cloud foundry postgresSQL database.

Important link:

PG studio :- https://github.com/amitaucs/pg_studio...
pgAdmin Download :- https://www.pgadmin.org/download/
Postgres Download :- https://www.postgresql.org/download/

Brew command to install pgAdmin in Mac :- brew install --cask pgadmin4
Docker command for PostGres:
1. docker pull postgres
2. docker run -d -e POSTGRES_USER=user -e POSTGRES_PASSWORD=root123 --name db-training -p 5432:5432 --restart=always postgres

Git repo for code :- https://github.com/amitaucs/Y_retail_...