-- command to run postgres on docker --
-- remember to change the password --
docker run -d -p 5433:5432 -e POSTGRES_PASSWORD=<your_password> --name postgres postgres

-- command to stop the postgres docker container --
docker stop postgres

-- command to remove the postgres docker container --
docker rm postgres
