A REST API to send HTTP request, deployed using Docker.
- Download and install docker and docker-compose
- Download and move to 'api-client-restapi'
$ git clone https://github.com/kmponis/api-client-restapi.git
$ docker-compose up
$ open http://<docker_ip_address>:9991/swagger-ui.html
$ open api-client/target/jacoco-reports/index.html
- Move to 'api-client', Build and Deploy
$ cd api-client
$ docker build -t apiclientimage -f Dockerfile-noDC .
$ docker run -p 9991:8882 apiclientimage
- Upload to dockerhub for external use
$ docker tag apiclientimage kbonis/api-client-image:latest
$ docker login
$ docker push kbonis/api-client-image:latest