Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ypankaj007/go-docker
Rest API by using golang and deploy with Docker
https://github.com/ypankaj007/go-docker
docker go golang
Last synced: 17 days ago
JSON representation
Rest API by using golang and deploy with Docker
- Host: GitHub
- URL: https://github.com/ypankaj007/go-docker
- Owner: ypankaj007
- Created: 2019-07-08T09:33:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-24T06:53:16.000Z (over 5 years ago)
- Last Synced: 2023-03-02T18:59:34.452Z (almost 2 years ago)
- Topics: docker, go, golang
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-docker
Rest API by using golang and deploy with Docker.
It's just an prototype how the go application will build, run and deploy by using docker
### Build
```ssh
$ docker build -t go-docker:v1.0 .
```
### Run```ssh
$ docker run --rm -p 8080:8080 go-docker:v1.0
```
Hit http://localhost:8080/ and if everything is fine then it will response with a message "Welcome to Golang & Docker demo application"