ReST endpoints:
- GET localhost:8080/customer/{id} - retrieve customer record associated with id
- POST localhost:8080/customer/create - create new customer from form-data
- PUT localhost:8080/customer/{id} - update customer record associated with id
- DELETE localhost:8080/customer/{id} - delete customer record associated with id
Working with the microservice:
$ cd wit-customer $ docker-compose up --build # this starts the microservice ^C # abort the process $ docker-compose down # gracefully stop the microservice