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