A simple Websockets realtime chat application.
- Local golang installation
Installing the dependencies:
go mod download
Running the application:
go run main.go
Building the image:
docker build -t websocketschat .
Running the application:
docker run -p 5000:5000 websocketschat
After starting the application the server should be started on port 5000 and you can start sending and receiving chat messages.