8000 GitHub - javiersigler/docker-chat: Dockerized chat, based on my previous project SocketIOChatDemo
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

javiersigler/docker-chat

 
 

Repository files navigation

docker-chat

Dockerized chat, based on my previous project SocketIOChatDemo, which is an example of a web application using socket.io library.

Following the Microservices architecture, the system consists on two services that run in separate containers:

Demo

Yo can find a demo, working here

demo

Usage with git

$ git clone https://github.com/ageapps/docker-chat
$ cd docker-chat
$ docker-compose up
// connect in your browser to <host IP>:8080

Usage with Docker Hub

// run mongo service
$ docker run -v "$(pwd)"/database:/data --name mongo_chat_db -d mongo mongod --smallfiles
// run docker-chat image
$ docker run -d --name node_chat_server -v "$(pwd)"/database:/data --link mongo_chat_db:db -p 8080:4000 ageapps/docker-chat
// connect in your browser to <host IP>:8080

Resources

About

Dockerized chat, based on my previous project SocketIOChatDemo

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 68.5%
  • HTML 17.6%
  • CSS 12.5%
  • Shell 1.4%
0