This application requires the postgres database. You can either install this yourself or use docker-compose to get the latest docker hub postgres image.
Some basic docker command lines:
# Bring postgres up (and build the image if needed) on localhost:5432
docker-compose up -d
# shutdown postgres
docker-compose stop
# remove the container
docker-compose rm