Skip to content

skibish/go-docker-20190302

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Go + Docker = <3 Workshop

Daugavpils, 2019/03/02

How to run and build binaries

# Run using `go run`
cd cmd/chatserver && go run main.go
cd cmd/client && go run main.go

# Build binaries
cd cmd/chatserver && go build
cd cmd/client && go build

How to build and run Docker image

docker build -t chatserver .
docker run --rm --publish 9999:9999 chatserver

Worth to watch

About

Go and Docker workshop in Daugavpils

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published