https://github.com/whoabhisheksah/k8s-leases-demo
https://github.com/whoabhisheksah/k8s-leases-demo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/whoabhisheksah/k8s-leases-demo
- Owner: whoAbhishekSah
- Created: 2023-09-30T06:27:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-30T07:00:52.000Z (over 1 year ago)
- Last Synced: 2025-01-21T15:28:29.757Z (5 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```