You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. create 2 services web service and postgre service
database(postgresql)
docker exec -it psql-db sh -> executes the postgre service
psql -U postrges -> postgre cmd
CREATE DATABASE emp_db; -> creatign database
how to perform crud operations
1.docker exec -it workshop_web_container sh ->executes the web service
2.inserting into the table -> CMD curl -X POST http://0.0.0.0:8000/members/rest/employee/ -d "first_name=vijeth&last_name=ferna&address=venor&emp_id=2&mobile=915263890&department=devops&salary=1000"