-- docker commands --

-- run the postgresql container --
-- 1. value of the POSTGRES_PASSWORD will be used in the default.json
-- 2. 5432 is the postgresql running port

docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=password --name postgres postgres

-- stop the postgresql container --

docker stop postgres

-- remove the postgresql container --

docker rm postgres
