An open API service indexing awesome lists of open source software.

https://github.com/whoabhisheksah/k8s-leases-demo


https://github.com/whoabhisheksah/k8s-leases-demo

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

## Important docker commands:

```shell
# build image
docker build . -t whoabhisheksah/go-server

# push image
docker login
docker push whoabhisheksah/go-server:latest

# run image locally
docker run -i --expose=8080 -p 8080:8080 whoabhisheksah/go-server
```