A group chat CLI app using TCP Socket.
The app is composed of both a client and a server (which listens on port 5300).
Building and running the Server
- Change to the server directory
cd server/
- Build docker image
docker build -t zeddysoft/server .
- Spin off a docker container
docker run -it -p 5300:5300 zeddysoft/server
Building and running clients
- Change to the client directory
cd client/
- Build docker image
docker build -t zeddysoft/client .
- Spin off as many client docker containers
docker run -it zeddysoft/client