Pre req:
- docker
- docker-compose
- JDK-11
- maven
docker-compose updocker-compose downmvn clean testmvn spring-boot:runcurl --request POST \
  --url http://localhost:8080/api/user \
  --header 'Content-Type: application/json' \
  --data '{
	"firstName": "Tim",
	"lastName": "Page",
	"phone": "+378 85 34",
	"email": "james@bloom.cok",
	"addressLine1": "Brook Street Lane 67",
	"addressLine2": null,
	"city": "Berlin",
	"state": "Brandenburg",
	"zip": "36413",
	"countryCode": "DE"
}'