Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tutorialedge/go-docker-tutorial
https://github.com/tutorialedge/go-docker-tutorial
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tutorialedge/go-docker-tutorial
- Owner: TutorialEdge
- Created: 2019-03-03T11:15:15.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T12:35:34.000Z (over 4 years ago)
- Last Synced: 2024-06-19T04:25:26.423Z (6 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 6
- Watchers: 2
- 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
```