https://docs.docker.com/get-docker/
docker-compose build
docker-compose up
On visiting http://localhost:8080/api/ in your browser
You should see "Hello Human"
Notice that you don't have to re-build the code when you make code changes. You can even enable automatic refresh on Chrome by installing LiveReload plugin
curl --location --request POST 'http://localhost:8080/api/employees/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "John Doe"
}'
curl http://localhost:8080/api/employees/
For further reference, please consider the following sections: