Files
examples-Microservices/README.md

16 lines
241 B
Markdown

# Product Catalog API
``` bash
go run .\main.go
```
Use the above command to run API on your local machine on port 9090.
Building Docker Image
``` bash
docker build -t microsrvice .
docker images
docker run -p 9090:9090 microservice
```