https://github.com/tutorialedge/go-docker-tutorial
https://github.com/tutorialedge/go-docker-tutorial
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tutorialedge/go-docker-tutorial
- Owner: TutorialEdge
- Created: 2019-03-03T11:15:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T12:35:34.000Z (over 5 years ago)
- Last Synced: 2025-04-02T21:12:10.780Z (9 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 6
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Go Docker Tutorial
[Tutorial link](https://tutorialedge.net/golang/go-docker-tutorial/)
[Video link](https://www.youtube.com/watch?time_continue=617&v=lIbdPrUpGz4&feature=emb_logo)
# Run with Golang
```
go run main.go
```
which will kick of a server on http://localhost:8081.
# Run with Docker
```
docker build -t my-go-app .
docker run -p 8080:8081 -it my-go-app
```