18 lines
407 B
Markdown
18 lines
407 B
Markdown
# Product Catalog API
|
|
|
|
``` bash
|
|
go run .\main.go
|
|
```
|
|
|
|
Use the above command to run API on your local machine on port 9090.
|
|
|
|
I'm using PROXMOX LXC containers, and to enable docker you need to "tweak" a little your PVE:
|
|
<https://nocin.eu/docker-install-docker-in-lxc-running-debian-buster/>
|
|
|
|
Building Docker Image
|
|
``` bash
|
|
docker build -t microsrvice .
|
|
docker images
|
|
docker run -p 9090:9090 microservice
|
|
```
|